summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/anchors/data/illegal3.qml
blob: 065ceb571e767f028a31e460b8a66c25f5836bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt 4.6

Rectangle {
    id: rect
    width: 120; height: 200; color: "white"
    Item {
        Rectangle { id: theRect; width: 100; height: 100 }
    }
    Rectangle {
        anchors.left: theRect.left
    }
}