summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml
blob: 9050c3a9a8882149fcc18c4c115ef6f8d156bd7e (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 variant child
    child: QtObject {
        id: otherObj
        property int myValue: 10
    }
}