aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/automaticSemicolon.qml
blob: 6db68f2328fea8e7f3f726ad2f38efffa2687228 (plain)
1
2
3
4
5
6
7
8
9
10
11

import QtQuick 2.0

QtObject {
    function code() {
        if (1) {
            var a;
            function f1(){}a=1;
        }
    }
}