tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
equal deleted inserted replaced
27:93b982ccede2 31:5daf16870df6
       
     1 import Qt 4.7
       
     2 
       
     3 MethodsObject {
       
     4     function testFunction2() { return 17; }
       
     5     function testFunction3() { return 16; }
       
     6 
       
     7     property int test: testFunction()
       
     8     property int test2: testFunction2()
       
     9     property int test3: testFunction3()
       
    10 }
       
    11