aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/illegalObj.qml
blob: a2bbd5d32bf39831d9e62eeee6e736564342a875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Rectangle {
    id: myItem

    states : State {
        PropertyChanges {
            target: myItem
            children: Item { id: newItem }
        }
    }
}