qtdeclarative/tests/auto/qml/qqmlecmascript/data/propertyVar.3.qml

20 lines
285 B
QML

import QtQuick 2.0
Item {
id: root
property bool test: false
property var jsint: 4
property int bound: jsint + 5
Component.onCompleted: {
if (bound != 9) return;
jsint = jsint + 1;
if (bound != 10) return;
test = true;
}
}