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

QtObject {
    property alias otherAlias: otherObject

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