Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / qtbug_11606.qml
1 import QtQuick 2.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 }