QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / jsimportfail / failThree.qml
1 import QtQuick 2.0
2
3 import "testModuleImport.js" as TestModuleImport
4
5 QtObject {
6     id: testQtObject
7     property int importedModuleAttachedPropertyValue: testQtObject.TestModuleImport.JsQtTest.MyQmlObject.value // should fail - the context of TestScriptImport is private to TestScriptImport.
8 }