Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / extendedObjectPropertyLookup.qml
1 import Qt.test 1.0
2 import QtQuick 1.0
3
4 QtObject {
5     property MyExtendedObject a;
6     a: MyExtendedObject { id: root }
7     property int b: Math.max(root.extendedProperty, 0)
8 }