mirror of
https://github.com/golang/go
synced 2024-11-19 06:24:41 -07:00
2e9de471eb
Fixes golang/go#31465 Change-Id: I2f79fe2167bab79b497125995efc938f2b63d274 Reviewed-on: https://go-review.googlesource.com/c/tools/+/172117 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
17 lines
272 B
Go
17 lines
272 B
Go
// A comment just to push the positions out
|
|
|
|
package a
|
|
|
|
import "fmt"
|
|
|
|
type A string //@A
|
|
|
|
func Stuff() { //@Stuff
|
|
x := 5
|
|
Random2(x) //@godef("dom2", Random2)
|
|
Random() //@godef("()", Random)
|
|
|
|
var err error //@err
|
|
fmt.Printf("%v", err) //@godef("err", err)
|
|
}
|