Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / exceptionProducesWarning.qml
1 import QtQuick 1.0
2 import Qt.test 1.0
3
4 MyQmlObject {
5     Component.onCompleted:
6         { throw(new Error("JS exception")) }
7 }
8