tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
equal deleted inserted replaced
27:93b982ccede2 31:5daf16870df6
       
     1 import Test 1.0
       
     2 import Qt 4.7
       
     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