qtdeclarative/tests/auto/qml/qqmlecmascript/data/incrDecrSemicolon2.qml

20 lines
293 B
QML

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) {
}
}
}