summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativemoduleplugin/data/importsMixedQmlCppPlugin.qml
blob: 335cc37b401a7ba37dd51eca2cb8320e200fdc8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.qtproject.AutoTestQmlMixedPluginType 1.0
import QtQuick 1.0

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

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