diff options
Diffstat (limited to 'unit-tests/cond-op-not.mk')
-rw-r--r-- | unit-tests/cond-op-not.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unit-tests/cond-op-not.mk b/unit-tests/cond-op-not.mk index ad0a0939eecf..d929318785a5 100644 --- a/unit-tests/cond-op-not.mk +++ b/unit-tests/cond-op-not.mk @@ -1,21 +1,21 @@ -# $NetBSD: cond-op-not.mk,v 1.3 2020/08/28 14:48:37 rillig Exp $ +# $NetBSD: cond-op-not.mk,v 1.4 2020/10/24 08:46:08 rillig Exp $ # # Tests for the ! operator in .if conditions. # The exclamation mark negates its operand. .if !1 -.error +. error .endif # Exclamation marks can be chained. # This doesn't happen in practice though. .if !!!1 -.error +. error .endif # The ! binds more tightly than the &&. .if !!0 && 1 -.error +. error .endif all: |