summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmllanguage/data/alias.7.qml
blob: d3cf5fec57642a8afa06dbb4ec50529e52f18feb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.6

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

    object: Object {
        id: target

        property Object object
        object: Object {}
    }
}