diff options
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml new file mode 100644 index 0000000..fa7e01c --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml @@ -0,0 +1,10 @@ +import Qt 4.6 + +QtObject { + property var obj: nested + + property var obj2 + obj2: NestedTypeTransientErrors { + id: nested + } +} |