aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/objectName.qml
blob: 20b9ec29353386e8f25b4f19973957f5972e5141 (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0

QtObject {
    objectName: "hello"

    property string test1: objectName
    property string test2: objectName.substr(1, 3)
}