aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/intEnumCompare.qml
blob: e494d0d3e31225caa13e42a8e7d1027369cf1fe0 (plain)
1
2
3
4
5
6
7
8
9
pragma Strict
import QtQml

QtObject {
    property bool a: Component.Asynchronous == 1
    property bool b: Component.Asynchronous != 1
    property bool c: Qt.BottomEdge > 4
    property bool d: Qt.BottomEdge < 2
}