Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativestates / data / illegalObj.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     id: myItem
5
6     states : State {
7         PropertyChanges {
8             target: myItem
9             children: Item { id: newItem }
10         }
11     }
12 }