summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/alias.7.qml
blob: ec5536e7e879f48ab2d615115c8af8fd9de67ef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 1.0

QtObject {
    property QtObject object
    property alias aliasedObject: target.object

    object: QtObject {
        id: target

        property QtObject object
        object: QtObject {}
    }
}