Extract all QtQuick 1 elements into a separate library/plugin.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / strictlyEquals.qml
1 import QtQuick 2.0
2
3 QtObject {
4     property bool test1: (a === true)
5     property bool test2: !(a === false)
6     property bool test3: (b === 11.2)
7     property bool test4: !(b === 9)
8     property bool test5: (c === 9)
9     property bool test6: !(c === 13)
10     property bool test7: (d === "Hello world")
11     property bool test8: !(d === "Hi")
12
13     property bool a: true
14     property real b: 11.2
15     property int c: 9
16     property string d: "Hello world"
17 }