qt6-bb10/qtdeclarative/tests/auto/qml/qqmlbinding/data/nanPropertyToInt.qml

15 lines
222 B
QML

import QtQuick 2.11
Item {
visible: true
width: 320
height: 200
property int val: other.val
Rectangle {
id: other
anchors.fill: parent;
property int val: undefined / 2
}
}