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

QtObject {
    property alias obj : otherObj
    property variant child
    child: QtObject {
        id: otherObj
        property int myValue: 10
    }
}