Support enum return types in Q_INVOKABLE functions.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / invokableEnumRet.qml
1 import Qt.test 1.0
2 import QtQuick 2.0
3
4 MyQmlObject {
5     id: root
6     property bool test: false
7     Component.onCompleted: {
8         test = (root.getEnumValue() == 3)
9     }
10 }
11