aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/CatchStatement.qml
blob: e0f70fce7e93dc0a72865ed7bf9f079b57ca4222 (plain)
1
2
3
4
5
6
7
8
import QtQml 2.12

QtObject {
    function f() {
        try {} catch(err) {}
        console.log(err);
    }
}