summaryrefslogtreecommitdiff
path: root/tests/auto/qquickxmllistmodel/data/proxyCrash.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qquickxmllistmodel/data/proxyCrash.qml')
-rw-r--r--tests/auto/qquickxmllistmodel/data/proxyCrash.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/qquickxmllistmodel/data/proxyCrash.qml b/tests/auto/qquickxmllistmodel/data/proxyCrash.qml
new file mode 100644
index 0000000..c0c5a25
--- /dev/null
+++ b/tests/auto/qquickxmllistmodel/data/proxyCrash.qml
@@ -0,0 +1,9 @@
+import QtQuick 2.0
+import QtQuick.XmlListModel 2.0
+import SortFilterProxyModel 1.0
+
+SortFilterProxyModel {
+ source: XmlListModel {
+ XmlRole { }
+ }
+}