summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/anchors/data/illegal1.qml
blob: 635bf95aae72d22b1cc7dd08ab8267bdbcb1e94c (plain)
1
2
3
4
5
6
7
8
9
10
Rect {
    id: rect
    width: 120; height: 200; color: "white"
    Rect { id: TheRect; width: 100; height: 100 }
    Rect {
        anchors.left: TheRect.left
        anchors.right: TheRect.right
        anchors.horizontalCenter: TheRect.horizontalCenter
    }
}