aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/incrDecrSemicolon2.qml
blob: 717cdb5715a6d80915ad32582e93a096830f1c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0

QtObject {

    // PLEASE NOTE: the function below is whitespace and newline sensitive,
    //              because that is what the test is all about.
    //
    // So: DO NOT REFORMAT THE CODE BELOW!

    function code() {
var a, b, c;
a=b
++c

if (a === b) {
}
    }
}