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

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