summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml
blob: 67b8cfd85b7f474f4d1cea355ba74112d8b9ecdb (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.7
import "include_pragma_outer.js" as Script

Item {
    property int test1

    Component.onCompleted: {
        test1 = Script.callFunction()
    }
}