aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11606.qml
blob: 05c482cae76d5be48e258bfa7f31bafc04b92dec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.0

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