aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeitem/data/transformCrash.qml
blob: 35c1a9ab42721af714de12b5a33683aaaf127991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 1.0

Item {
    id: wrapper
    width: 200
    height: 200

    QtObject {
        id: object
    }

    Component.onCompleted: wrapper.transform = object
}