aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/useBeforeDeclaration.qml
blob: 1c0f8092c3ff16567910dbb0484a63f4a5ab5116 (plain)
1
2
3
4
5
6
7
8
import QtQml
QtObject {
    signal sig()
    onSig: ()=> {
        argq = 12;
        var argq;
    }
}