summaryrefslogtreecommitdiffstats
path: root/test/directive2.go
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 19:23:18 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 19:23:18 +0000
commit43a123c1ae6613b3efeed291fa552ecd909d3acf (patch)
treefd92518b7024bc74031f78a1cf9e454b65e73665 /test/directive2.go
parentInitial commit. (diff)
downloadgolang-1.20-43a123c1ae6613b3efeed291fa552ecd909d3acf.tar.xz
golang-1.20-43a123c1ae6613b3efeed291fa552ecd909d3acf.zip
Adding upstream version 1.20.14.upstream/1.20.14upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/directive2.go')
-rw-r--r--test/directive2.go58
1 files changed, 58 insertions, 0 deletions
diff --git a/test/directive2.go b/test/directive2.go
new file mode 100644
index 0000000..2bb9ca9
--- /dev/null
+++ b/test/directive2.go
@@ -0,0 +1,58 @@
+// errorcheck
+
+// Copyright 2020 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// Verify that misplaced directives are diagnosed.
+
+// ok
+//go:build !ignore
+
+package main
+
+//go:build bad // ERROR "misplaced compiler directive"
+
+//go:noinline // ERROR "misplaced compiler directive"
+type (
+ T2 int //go:noinline // ERROR "misplaced compiler directive"
+ T2b int
+ T2c int
+ T3 int
+)
+
+//go:noinline // ERROR "misplaced compiler directive"
+type (
+ T4 int
+)
+
+//go:noinline // ERROR "misplaced compiler directive"
+type ()
+
+type T5 int
+
+func g() {} //go:noinline // ERROR "misplaced compiler directive"
+
+// ok: attached to f (duplicated yes, but ok)
+//go:noinline
+
+//go:noinline
+func f() {
+ //go:noinline // ERROR "misplaced compiler directive"
+ x := 1
+
+ //go:noinline // ERROR "misplaced compiler directive"
+ {
+ _ = x //go:noinline // ERROR "misplaced compiler directive"
+ }
+ var y int //go:noinline // ERROR "misplaced compiler directive"
+ //go:noinline // ERROR "misplaced compiler directive"
+ _ = y
+
+ const c = 1
+
+ _ = func() {}
+}
+
+// EOF
+//go:noinline // ERROR "misplaced compiler directive"