summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/illegalObj.qml
blob: 26d0f502c282f3fca03363a41bb2fb4789d22ff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt 4.7

Rectangle {
    id: myItem

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