aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/nullishCoalescing_LHS_Or.qml
blob: 8864524d0d806bb10e1ce4c7bacab11da308fc74 (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_or = 3 || 4 ?? 0;
    }
}