aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativemoduleplugin/data/implicit1/temptest.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativemoduleplugin/data/implicit1/temptest.qml')
-rw-r--r--tests/auto/declarative/qdeclarativemoduleplugin/data/implicit1/temptest.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/data/implicit1/temptest.qml b/tests/auto/declarative/qdeclarativemoduleplugin/data/implicit1/temptest.qml
deleted file mode 100644
index 67fb18feb0..0000000000
--- a/tests/auto/declarative/qdeclarativemoduleplugin/data/implicit1/temptest.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 2.0
-
-// this qml file uses a type which is meant to be defined
-// in a plugin which is specified in the qmldir file.
-// however, that plugin doesn't exist, so it cannot be
-// loaded, and hence the AItem type will be an unknown type.
-
-Item {
- id: root
-
- AItem {
- id: unknown
- }
-}