Remove insignificant test status and explicitly mark failing test.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativev4 / data / doubleBoolJump.qml
1 import QtQuick 2.0
2
3 Rectangle { 
4     QtObject {                                                                                    
5         property real output: i1.p1 || i2.p2 == "text" ? 0.7  : 0
6     }
7
8     QtObject {
9         id: i2
10         property string p2
11     }
12
13     QtObject {
14         id: i1
15         property bool p1: false
16     }
17 }  
18