summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlecmascript/data/extendedObjectPropertyLookup.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-10-09 04:29:10 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-10-09 04:29:10 (GMT)
commit9b7d77460c38ec93d98fa4779826b32bea2eaaff (patch)
treedf741aad025f325e0f15330887bcd82b0226b366 /tests/auto/declarative/qmlecmascript/data/extendedObjectPropertyLookup.qml
parent04511e3dbbcdf40489852babbf4753e0f744c26f (diff)
parent3a0cb6ebef245780782fcab6709e471d26789590 (diff)
downloadQt-9b7d77460c38ec93d98fa4779826b32bea2eaaff.zip
Qt-9b7d77460c38ec93d98fa4779826b32bea2eaaff.tar.gz
Qt-9b7d77460c38ec93d98fa4779826b32bea2eaaff.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'tests/auto/declarative/qmlecmascript/data/extendedObjectPropertyLookup.qml')
-rw-r--r--tests/auto/declarative/qmlecmascript/data/extendedObjectPropertyLookup.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlecmascript/data/extendedObjectPropertyLookup.qml b/tests/auto/declarative/qmlecmascript/data/extendedObjectPropertyLookup.qml
new file mode 100644
index 0000000..8ff3aeb
--- /dev/null
+++ b/tests/auto/declarative/qmlecmascript/data/extendedObjectPropertyLookup.qml
@@ -0,0 +1,8 @@
+import Qt.test 1.0
+import Qt 4.6
+
+Object {
+ property MyExtendedObject a;
+ a: MyExtendedObject { id: Root }
+ property int b: Math.max(Root.extendedProperty, 0)
+}