aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/declarativeToString.qml
blob: ac296ce2932e96a297129b0053052cb41f822fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt.test 1.0

MyQmlObject{
    id: obj
    objectName: "objName"
    function testToString()
    {
        obj.stringProperty = obj.toString();
    }

}