aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/duplicatedPropertyName.qml
blob: 18a4435f5fef29eadc94bcbdc8e41649c1a6b5e3 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick

Item {
    property int cat: 12
    property string cat: "mutantx"

    signal clicked()
    signal clicked(a: int)
}