summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11606.qml
blob: 6efb9c1ef322d91a856771f93860da8993152dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt 4.7

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