summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlecmascript/data/attachedProperty.qml
blob: c5088e35f7f8b530d5f34fcf1dd2063200d8c9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt.test 1.0
import Qt.test 1.0 as Namespace

MyQmlObject {
    id: Me
    property int a: MyQmlObject.value
    property int b: Namespace.MyQmlObject.value
    property int c: Me.Namespace.MyQmlObject.value
    property int d: Me.Namespace.MyQmlObject.value
}