summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlecmascript/data/aliasPropertyAndBinding.qml
blob: 614316497a73488cb1d55bb7ca3a0cf802f32fc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.6
import Qt.test 1.0

MyQmlObject {
    property alias c1: MyObject.c1
    property int c2: 3
    property int c3: c2 
    objectProperty: Object { 
        id: MyObject 
        property int c1
    }
}