aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/pluginQuick_propertyChangesParsed.qml
blob: 94873463f164520d9066eea26c09f7bd4073b184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick

Window {
    Item {
        id: foo
        property color myColor: 'black'

        states: [
            State {
                PropertyChanges {
                    target: foo
                    myColor: Qt.rgba(0.5, 0.5, 0.5, 0.16)
                    notThere: "a"
                }
            }
         ]

    }
}