aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/compiler/testdata/errors.txt
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2021-11-10 21:57:33 +0100
committerAleksandr Nogikh <wp32pw@gmail.com>2021-11-12 16:32:52 +0100
commite390a29d2f0cb98ecd4cab299d0ba1e0b2e408b2 (patch)
tree398efa5edb3428199d303a869c1e4508091dd027 /pkg/compiler/testdata/errors.txt
parent0afefce7b7d6ac6f7f4489b6c0b9d06f8be2f5a6 (diff)
pkg/compiler: warn about confusing comments that fake directives
It's a somewhat common mistake to write comments instead of directives: #include <foo> #define FOO BAR because that's how it's done in C. Warn about such cases.
Diffstat (limited to 'pkg/compiler/testdata/errors.txt')
-rw-r--r--pkg/compiler/testdata/errors.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/compiler/testdata/errors.txt b/pkg/compiler/testdata/errors.txt
index 2280d34b8..65eaf8a97 100644
--- a/pkg/compiler/testdata/errors.txt
+++ b/pkg/compiler/testdata/errors.txt
@@ -3,6 +3,11 @@
# Errors that happen during type checking phase.
+#include "something" ### confusing comment faking a directive (rephrase if it's intentional)
+#define FOO BAR ### confusing comment faking a directive (rephrase if it's intentional)
+# include "something" ### confusing comment faking a directive (rephrase if it's intentional)
+# incdir "dir" ### confusing comment faking a directive (rephrase if it's intentional)
+
foo$0(x fileoff, y int8, z buffer[in])
foo$1(x "bar") ### unexpected string "bar", expect type
foo$2(x 123, y "bar") ### unexpected int 123, expect type ### unexpected string "bar", expect type