Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / variantsAssignedUndefined.qml
1 import QtQuick 2.0
2
3 QtObject {
4     property bool runTest: false
5     onRunTestChanged: test1 = undefined
6
7     property variant test1: 10
8     property variant test2: (runTest == false)?11:undefined
9 }