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