aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/jsimportfail/failFive.qml
blob: 9bf969cc6113f1e5dd4ac3913e6d028aef556fec (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0

// This should fail, since if the script does have imports
// of its own, it should run in its own context.

import "importWithImports.js" as TestImportScoping

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