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

QtObject {
    property alias otherAlias: otherObject

    property variant other 
    other: MyQmlObject {
        id: otherObject
        value: 10
    }
}