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

MyQmlObject {
    property alias c1: myObject.c1
    property int c2: 3
    property int c3: c2 
    objectProperty: QtObject { 
        id: myObject 
        property int c1
    }
}