aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml
blob: 05a73996017a4fb42cbb2359cec2b47bc67a9864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.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();
}