aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/invalidQmlEnumValue.2.qml
blob: 9892fcd19c60c80cb0997ca8383cfebba695cef9 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

QtObject {
    enum MyEnum {
        EnumValue1,
        EnumValue2 = hello,
        EnumValue3
    }
}