Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / aliasPropertyAndBinding.qml
1 import QtQuick 1.0
2 import Qt.test 1.0
3
4 MyQmlObject {
5     property alias c1: myObject.c1
6     property int c2: 3
7     property int c3: c2 
8     objectProperty: QtObject { 
9         id: myObject 
10         property int c1
11     }
12 }
13
14