Files
qt-creator/tests/auto/qml/reformatter/enum.qml
Uladzislau Paulovich ab87bdf4ea qml | Add support for enums formatting
Change-Id: Id7e435a7c556c7fc469b9055ca772a7850e16676
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
2019-06-11 10:04:29 +00:00

15 lines
148 B
QML

import QtQuick 2.0
Item {
enum Test {
A,
B
}
enum TestWithValues {
A = 11.1,
B,
C = 3
}
}