aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/aliasPropertyToIC.qml
blob: 17116bb091f4e81672bbca93d59fe7fa7b8f77fc (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQml


QtObject {
    id: root

    component Test : QtObject {}

    property alias myalias: other
    property var direct: Test { id: other }
}