aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickitem2/data/undefinedInvalid.qml
blob: 473038c5a13f21a96418ea7c90873f33b547eb6b (plain)
1
2
3
4
5
6
7
8
9
import QtQuick

Item {
    property var undef: undefined
    width: undef
    height: undef
    implicitWidth: 200
    implicitHeight: 300
}