summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/invokableObjectRet.qml
blob: 29d7d012c4def08d3284bbe4ae39989afd194141 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt.test 1.0
import Qt 4.7

MyQmlObject {
    id: root
    property bool test: false
    Component.onCompleted: {
        test = (root.returnme() == root)
    }
}