Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / include_pragma.qml
1 import QtQuick 2.0
2 import "include_pragma_outer.js" as Script
3
4 Item {
5     property int test1
6
7     Component.onCompleted: {
8         test1 = Script.callFunction()
9     }
10 }
11