aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/ignoreWarnings.qml
blob: 90bb9a543620c35aef41325f25343e7792102960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import QtQuick 2.0
import QtTest 2.0 // qmllint disable unused-imports
import QtTest 2.0 // qmllint disable

Item {
    @Deprecated {}
    property string deprecated

    property string a: root.a // qmllint disable unqualified
    property string b: root.a // qmllint disable

    // qmllint disable unqualified
    property string c: root.a
    property string d: root.a
    // qmllint enable unqualified

    //qmllint disable
    property string e: root.a
    Component.onCompleted: {
        console.log(deprecated);
    }
    // qmllint enable

}