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

Text {
    text: KeyNavigation.priority == KeyNavigation.BeforeItem ? "before" : "after"
    Text {
        text: KeyNavigation.priority == KeyNavigation.BeforeItem ? "before" : "after"
    }
}