tests/auto/declarative/qdeclarativeecmascript/data/scope.4.qml
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
equal deleted inserted replaced
27:93b982ccede2 31:5daf16870df6
       
     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 }