summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/invalidProperty.qml
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-06-25 03:11:09 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-06-25 03:11:09 (GMT)
commit2426502f372f1c1a33ccaba3549dc0eda2a754de (patch)
tree8a9ec929e44395703bdb15d290ce170e69f800ab /tests/auto/declarative/qdeclarativelanguage/data/invalidProperty.qml
parentcfa9eee32081dc49ab0697b1f483db01c8aee7cd (diff)
downloadQt-2426502f372f1c1a33ccaba3549dc0eda2a754de.zip
Qt-2426502f372f1c1a33ccaba3549dc0eda2a754de.tar.gz
Qt-2426502f372f1c1a33ccaba3549dc0eda2a754de.tar.bz2
Disallow global object properties as property names
QTBUG-11605
Diffstat (limited to 'tests/auto/declarative/qdeclarativelanguage/data/invalidProperty.qml')
-rw-r--r--tests/auto/declarative/qdeclarativelanguage/data/invalidProperty.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidProperty.qml
new file mode 100644
index 0000000..6077de4
--- /dev/null
+++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidProperty.qml
@@ -0,0 +1,5 @@
+import Qt 4.7
+
+QtObject {
+ property int parseInt
+}