aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/singletontype/singletonWithEnum.qml
blob: 166f823667c1470284266a5d50a4bca7fbaee595 (plain)
1
2
3
4
5
6
7
8
9
import QtQml 2.0
import Qt.test.singletonWithEnum 1.0

QtObject {
    property int testValue: 0
    Component.onCompleted: {
        testValue = SingletonWithEnum.TestValue;
    }
}