aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/nullAccess.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/data/nullAccess.qml')
-rw-r--r--tests/auto/qml/qmlcppcodegen/data/nullAccess.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/data/nullAccess.qml b/tests/auto/qml/qmlcppcodegen/data/nullAccess.qml
new file mode 100644
index 0000000000..ba2b59feb1
--- /dev/null
+++ b/tests/auto/qml/qmlcppcodegen/data/nullAccess.qml
@@ -0,0 +1,7 @@
+import QtQuick
+
+Item {
+ width: ListView.view.width+40
+ height: ListView.view.height
+ Component.onCompleted: ListView.view.height = 10
+}