aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlbinding/data/nanPropertyToInt.qml
blob: 366dbf0464b8e358c945df53c47f76e4f54d7c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
    }
}