aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/IsNotAnEntryOfEnum.qml
blob: 8b20fe9ae9758f4cd60295eebd12f1a88cc657c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick

Item {
    id: item
    visible: true

    enum Mode {
        Hours,
        Minutes
    }

    property int mode: item.Mode.Hours
    property string s: item.mode === IsNotAnEntryOfEnum.Mode.Hour ? "green" : "tomato"
}