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

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