File: directive2.go

package info (click to toggle)
golang-1.23 1.23.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 157,604 kB
  • sloc: asm: 127,604; ansic: 6,980; sh: 2,218; javascript: 1,664; perl: 1,052; python: 366; makefile: 88; cpp: 39; f90: 8; awk: 7; objc: 4
file content (58 lines) | stat: -rw-r--r-- 1,186 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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"