aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/specificParent.qml
blob: 6d5e6cdc166b88262683935e257dfa0397259c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick

Rectangle {
    Item {
        id: child
        property real a: parent.radius
    }

    property real a: child.a
    radius: 77
}