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