diff options
Diffstat (limited to 'tests/auto/declarative/qmllanguage/data/NestedAlias.qml')
-rw-r--r-- | tests/auto/declarative/qmllanguage/data/NestedAlias.qml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmllanguage/data/NestedAlias.qml b/tests/auto/declarative/qmllanguage/data/NestedAlias.qml new file mode 100644 index 0000000..5155612 --- /dev/null +++ b/tests/auto/declarative/qmllanguage/data/NestedAlias.qml @@ -0,0 +1,14 @@ +import Qt 4.6 + +QtObject { + property QtObject o1 + property QtObject o2 + + property alias a: object2.a + + o1: QtObject { id: object1 } + o2: QtObject { + id: object2 + property int a: 1923 + } +} |