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