summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmllanguage/data/alias.5.qml
blob: 4316d0d7d754711e5a39c046d236dec7a47326b2 (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 var other 
    other: MyQmlObject {
        id: otherObject
        value: 10
    }
}