aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/alias.5.qml
blob: ccd47658e0ff6de35fce70a9a05d97d1f4d67ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0
import Test 1.0

QtObject {
    property alias otherAlias: otherObject

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