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

Item {
    @Deprecated { reason: "This deprecation should be overridden!" }
    function deprecatedOverride(a, b) {}

    @Deprecated { reason: "This deprecation should be visible!" }
    function deprecatedInherited(c, d) {}
}