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

20 lines
285 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 x=0, y=0;
var z=
x
++
++
y
}
}