Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / include_callback.qml
1 import QtQuick 2.0
2 import "include_callback.js" as IncludeTest
3
4 QtObject {
5     property bool test1: false
6     property bool test2: false
7     property bool test3: false
8     property bool test4: false
9     property bool test5: false
10     property bool test6: false
11
12     Component.onCompleted: { 
13         IncludeTest.go(); 
14     }
15 }