aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlmoduleplugin/data/importsMixedQmlCppPlugin.qml
blob: f1268075c1a6c6687ac3d456c6cc09693050e755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import org.qtproject.AutoTestQmlMixedPluginType 1.0
import QtQuick 2.0
import QtQml 2.0

Item {
    property bool test: false
    Bar {
        id: bar
    }

    Component.onCompleted: {
        test = (bar.value == 16);
    }
}