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

QtObject {
    property alias otherAlias: otherObject

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