Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / scope.4.qml
1 import Qt.test 1.0
2
3 MyQmlObject {
4     id: a
5     property int b: 9
6
7     property int test
8     property string test2
9
10     // Should resolve to signal arguments, not to other elements in the file
11     onArgumentSignal: { test = a; test2 = b; }
12 }