summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/anchors/data/illegal3.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/anchors/data/illegal3.qml')
-rw-r--r--tests/auto/declarative/anchors/data/illegal3.qml12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/auto/declarative/anchors/data/illegal3.qml b/tests/auto/declarative/anchors/data/illegal3.qml
deleted file mode 100644
index 065ceb5..0000000
--- a/tests/auto/declarative/anchors/data/illegal3.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-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
- }
-}