aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/invokableEnumRet.qml
blob: 21dfd6ae35a730aa9a5a0da648cc04b40257984e (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt.test 1.0
import QtQuick 2.0

MyQmlObject {
    id: root
    property bool test: false
    Component.onCompleted: {
        test = (root.getEnumValue() == 3)
    }
}