aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/voidConversion.qml
blob: f5826d9e485fae49aad4a1fd18959d7fd01651e4 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQml

QtObject {
    id: item
    property point p: Qt.point(20, 10)

    Component.onCompleted: {
        item.p = undefined
    }
}