aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml
blob: e8ef609fedf9a20772bd45b54a3e41e47f174677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import "include_remote_missing.js" as IncludeTest

QtObject {
    property bool done: false

    property bool test1: false
    property bool test2: false
    property bool test3: false

    Component.onCompleted: IncludeTest.go();
}