aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/aliasLookup.qml
blob: defea11fc1a0eed9182eb37f10b12886bf13444d (plain)
1
2
3
4
5
6
7
8
import QtQml

QtObject {
    id: self
    property real foo: 12.3
    property alias a: self.foo
    property string t: Math.round(self.a)
}