aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/qtbug_11606.qml
blob: b1b062ed35d49c5c7eae7f0ce60a8ae6060c0a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

QtObject {
    property bool test: false
    Component.onCompleted: {
        try {
            console.log(sorryNoSuchProperty);
        } catch (e) {
            test = true;
        }
    }
}