aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/testImportScoping.qml
blob: aff61cc4369ef22ccfcfd8c9661031652a0b87f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

// For backward compatibility, importing a script which has no imports,
// should run the script in the parent context.  See QTBUG-17518.

import "importWithNoImports.js" as TestNoImportScoping

QtObject {
    id: testQtObject
    property int componentError: TestNoImportScoping.componentError()
}