97c72bd9a6202c4fbd1ce5e1a9d7c4d902c97301
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / jsimport / SpecialRectangleOne.qml
1 import QtQuick 2.0
2
3 import "importPragmaLibrary.js" as TestPragmaLibraryImport
4
5 Rectangle {
6     width: TestPragmaLibraryImport.importIncrementedValue()
7     height: width + 15
8     color: "red"
9 }