summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml
blob: 04f5ba37d729777e3277cec4a4994c3937f17827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Test 1.0
import Qt 4.7

QtObject {
    property alias obj : otherObj
    property variant child
    child: QtObject {
        id: otherObj
        property int myValue: 10
    }
}