aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlengine/data/repeatedCompilation.qml
blob: 797381e54cfb9a846174651af3994a8df23ac85e (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

VMEExtendVMEComponent {
    property bool success: false

    Component.onCompleted: {
        success = (foo == 'bar') && (bar == 'baz')
    }
}