qtdeclarative/tests/auto/qml/qmlcppcodegen/data/methodOnListLookup.qml

17 lines
263 B
QML

pragma Strict
import QtQml
import TestTypes
QtObject {
objectName: people[0].getName()
property list<Person> people: [
Person {
name: "no one"
}
]
function boom() : string {
return people[1].getName()
}
}