diff options
Diffstat (limited to 'tests/auto/declarative/qmllanguage/data/alias.2.qml')
-rw-r--r-- | tests/auto/declarative/qmllanguage/data/alias.2.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmllanguage/data/alias.2.qml b/tests/auto/declarative/qmllanguage/data/alias.2.qml new file mode 100644 index 0000000..5c92270 --- /dev/null +++ b/tests/auto/declarative/qmllanguage/data/alias.2.qml @@ -0,0 +1,8 @@ +import Test 1.0 + +MyQmlObject { + id: root + property alias aliasObject: root.qmlobjectProperty + + qmlobjectProperty: MyQmlObject { value : 10 } +} |