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

import "importPragmaLibrary.js" as TestPragmaLibraryImport

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