summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/compatibilitySemicolon.qml
blob: 117925e67bccc8b5ee59ec29b000f965ff453568 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0

QtObject {
    function code() {

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