aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/testImportPragmaLibraryWithPragmaLibraryImports.qml
blob: 01f08dbdc3454e2aece7813be3a6cd1a515bf241 (plain)
1
2
3
4
5
6
7
import QtQuick 2.0
import "importPragmaLibraryWithPragmaLibraryImports.js" as LibraryImport

QtObject {
    id: root
    property int testValue: LibraryImport.importIncrementedValue(); // 10 + 1 + (7 due to previous tests) = 18
}