aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/changeslots/propertyChangeSlotErrors.4.qml
blob: b8459875df9ac82402d8247cdcb08464f74af399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.0

Item {
    property int changeCount: 0

    property bool _6nameWithUnderscoreNumber: false

    // invalid property name - the first character after an underscore must be a letter
    on_6NameWithUnderscoreNumberChanged: {
        changeCount = changeCount + 3;
    }
}