Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / qtbug_11606.qml
1 import QtQuick 1.0
2
3 QtObject {
4     property bool test: false
5     Component.onCompleted: {
6         try {
7             console.log(sorryNoSuchProperty);
8         } catch (e) {
9             test = true;
10         }
11     }
12 }