aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/deprecatedProperty.qml
blob: 539e7abb380318c27405184a78ee6762b880507c (plain)
1
2
3
4
5
6
7
8
9
10
import QtQml

QtObject {
   @Deprecated {}
   property int deprecated: 10

   Component.onCompleted: {
       console.log(deprecated);
   }
}