tests/auto/declarative/qdeclarativeecmascript/data/numberAssignment.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 NumberAssignment {
       
     4     test1: if (1) 6.7
       
     5     test2: if (1) "6.7"
       
     6     test3: if (1) 6
       
     7     test4: if (1) "6"
       
     8 
       
     9     test5: if (1) 6.7
       
    10     test6: if (1) "6.7"
       
    11     test7: if (1) 6
       
    12     test8: if (1) "6"
       
    13 
       
    14     test9: if (1) 6.7
       
    15     test10: if (1) "6.7"
       
    16     test11: if (1) 6
       
    17     test12: if (1) "6"
       
    18 }