2011-07-11 03:47:51 +00:00
|
|
|
import QtQuick 2.0
|
2011-04-27 12:13:26 +00:00
|
|
|
|
|
|
|
// 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()
|
|
|
|
}
|