Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / automaticSemicolon.qml
1
2 import QtQuick 2.0
3
4 QtObject {
5     function code() {
6         if (1) {
7             var a;
8             function f1(){}a=1;
9         }
10     }
11 }