aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcachegen/data/Enums.qml
blob: 5207ef03f0c84b5dc2549a1b8568e8c2767133ac (plain)
1
2
3
4
5
6
7
8
9
10
#!/she-bang
import QtQml 2.0
QtObject {
    enum Test {
        First = 100,
        Second = 200
    }
    property int value: 0
    Component.onCompleted: value = Enums.Second
}