aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/goodParent.qml
blob: 413337713ab89f6d95a35a26d81af3c44d02adf0 (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0

Item {
    property int rrr: 5
    Item {
        property int yyy: parent.rrr
    }
}