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

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