aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/lowercaseEnumRuntime.1.qml
blob: 866b49e1d5b298166c4bc13e65f50fdf12d2d602 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0
import Test 1.0

MyTypeObject {
    enumProperty: MyTypeObject.EnumVal1
    Component.onCompleted: {
        var a = MyTypeObject.EnumVal1;
        var b = MyTypeObject.lowercaseEnumVal
    }
}