aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/compatibilitySemicolon.qml
blob: 594a1b3605eb3b4905ae0fc21a637e9f3ad71ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

import QtQuick 2.0

QtObject {
    function code() {

        // Not correct according to ECMA 5.1, but JSC and V8 accept the following:
        do {
            ;
        } while (false) true
    }
}