aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/forWithLet.qml
blob: afed76ebceece158c8a4bff1864eaeba9753e811 (plain)
1
2
3
4
5
6
7
8
import QtQml

QtObject {
function foo() {
for (let i = 0; i < 5; ++i)
console.log(i);
}
}