Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / invokableObjectRet.qml
1 import Qt.test 1.0
2 import QtQuick 1.0
3
4 MyQmlObject {
5     id: root
6     property bool test: false
7     Component.onCompleted: {
8         test = (root.returnme() == root)
9     }
10 }
11