aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlproperty/data/invalidBinding.qml
blob: 58e83070eea1993c5b5bf937e86d481c5d286eeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    property Text text: myText

    property Rectangle rectangle1: myText
    property Rectangle rectangle2: getMyText()

    function getMyText() { return myText; }

    Text {
        id: myText
    }
}