diff options
Diffstat (limited to 'tests/auto/qml/qmllint/data/enumValid.qml')
| -rw-r--r-- | tests/auto/qml/qmllint/data/enumValid.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/enumValid.qml b/tests/auto/qml/qmllint/data/enumValid.qml new file mode 100644 index 0000000000..32971df070 --- /dev/null +++ b/tests/auto/qml/qmllint/data/enumValid.qml @@ -0,0 +1,11 @@ +import QtQml +import Enumerei + +QtObject { + property int a: EnumTester.S2 + property int b: EnumTester.U2 + property int c: EnumTesterScoped.U2 + + property int d: EnumTester.Scoped.S2 + property int e: EnumTesterScoped.Scoped.S2 +} |
