aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/nullObjectInitializer.2.qml
blob: d59f8f99f97c971004c880f09e7a19aa4249b643 (plain)
1
2
3
4
5
6
7
8
import QtQml 2.0
NullObjectInitializerBase {
    testProperty: null
    property bool success: false
    Component.onCompleted: {
        success = testProperty === null;
    }
}