mirror of
https://github.com/golang/go
synced 2024-11-18 21:14:44 -07:00
cae9aa5434
This is probably a better approach than showing an extra diagnostic, since a user cannot dismiss a diagnostic. Fixes golang/go#33397 Change-Id: I92b9a00f51a463673993793abfd4cfb99ce69a91 Reviewed-on: https://go-review.googlesource.com/c/tools/+/188766 Run-TryBot: Rebecca Stambler <rstambler@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
7 lines
139 B
Go
7 lines
139 B
Go
package good //@diag("package", "no_diagnostics", "")
|
|
|
|
func stuff() { //@item(good_stuff, "stuff", "func()", "func")
|
|
x := 5
|
|
random2(x)
|
|
}
|