xref: /freebsd/contrib/bmake/unit-tests/cond-op-or-lint.mk (revision 8ddb146abcdf061be9f2c0db7e391697dafad85c)
1# $NetBSD: cond-op-or-lint.mk,v 1.1 2020/11/08 23:54:28 rillig Exp $
2#
3# Tests for the || operator in .if conditions, in lint mode.
4
5.MAKEFLAGS: -dL
6
7# The '|' operator is not allowed in lint mode.
8# It is not used in practice anyway.
9.if 0 | 0
10.  error
11.else
12.  error
13.endif
14