aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/nullishCoalescing_RHS_Or.qml
blob: f172755e911ab5a63e04580b1b522e6f9ad384ee (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0

Component {
    Component.onCompleted: {
        // Should cause an error since having either || or && on any side of the coalescing operator is banned by the specification
        var bad_rhs_or = 0 ?? 3 || 4;
    }
}