aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/undefinedResets.qml
blob: 38d3971b5aad7be8e21a74860db8170d54d33415 (plain)
1
2
3
4
5
6
7
8
pragma Strict
import TestTypes

Person {
    name: shoeSize === 11 ? undefined : "Marge"

    onObjectNameChanged: name = undefined
}