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

DeprecatedFunctions {
    function deprecatedOverride(x, y, z) {} // qmllint disable shadow
    Component.onCompleted: {
        deprecatedOverride();
    }
}