aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/SpecialRectangleOne.qml
blob: 97c72bd9a6202c4fbd1ce5e1a9d7c4d902c97301 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

import "importPragmaLibrary.js" as TestPragmaLibraryImport

Rectangle {
    width: TestPragmaLibraryImport.importIncrementedValue()
    height: width + 15
    color: "red"
}