aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/nullishCoalescing_LHS_And.qml
blob: ce6aa9a5323beb7ff575c758473c203c03c3789f (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_lhs_and = 3 && 4 ?? 0;
    }
}