Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelanguage / data / Alias3.qml
1 import Test 1.0
2 import QtQuick 1.0
3
4 QtObject {
5     property alias obj : otherObj
6     property variant child
7     child: QtObject {
8         id: otherObj
9         property int myValue: 10
10     }
11 }
12