aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/usingTypeWithEnum.qml
blob: 2509fc0df13e5b146af88a54dec28e5c401780ba (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0

QtObject {
    property int enumValue: TypeWithEnum.EnumValue2
    property int enumValue2: -1
    property int scopedEnumValue: TypeWithEnum.MyEnum.EnumValue3
    Component.onCompleted: enumValue2 = TypeWithEnum.EnumValue1
}