aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/importScriptsWithoutQmlMode.qml
blob: 17d12199d72e4081caa5c441a7ec604004c10623 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

import "importScriptsWithoutQmlMode.js" as Export

Rectangle {
    id: root
    property bool success: false

    Component.onCompleted: success = Export.isLegal()
}