aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/enumValid.qml
blob: 32971df070a30f58d53669198deeb0aad94e4ebc (plain)
1
2
3
4
5
6
7
8
9
10
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
}