Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativemoduleplugin / data / importsMixedQmlCppPlugin.2.qml
1 import com.nokia.AutoTestQmlMixedPluginType 1.5
2 import QtQuick 1.0
3
4 Item {
5     property bool test: false
6     property bool test2: false
7
8     Bar { 
9         id: bar
10     }
11
12     Foo {
13         id: foo
14     }
15
16     Component.onCompleted: {
17         test = (bar.value == 16);
18         test2 = (foo.value == 89);
19     }
20 }
21