aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmljsscope/data/Shadowed.qml
blob: 44f6d5e958bc14c9aa5832dbca5dba0639e377af (plain)
1
2
3
4
5
6
7
8
9
import QtQml

QtObject {
    property string property_not_shadowed
    function method_not_shadowed(foo) {}

    property string property_shadowed
    function method_shadowed(foo) {}
}