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

Object {
    property alias otherAlias: otherObject

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