aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/forLoop.qml
blob: be8b12409b9c013532462aa6ca8ea799216bb561 (plain)
1
2
3
4
5
6
7
8
9
import QtQml 2.0

QtObject {
    Component.onCompleted: {
        var stuff = [1, 2, 3, 4]
        for (var a in stuff)
            console.log(a);
    }
}