aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/jsimportfail/failFive.qml
blob: 73193a35a50b147130623b021a4ad174f7fda910 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.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()
}