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

DeprecatedFunctions {
    @Deprecated { reason: "No particular reason." }
    function deprecated(foobar) {}

    Component.onCompleted: {
        deprecated();
    }
}