blob: 6d81a8b568bd77cd0a61abe25ff52cc8a6aa2678 [file] [log] [blame]
// A comment just to push the positions out
package a
import "fmt"
type A string //@A
func AStuff() { //@AStuff
x := 5
Random2(x) //@godef("dom2", Random2)
Random() //@godef("()", Random)
var err error //@err
fmt.Printf("%v", err) //@godef("err", err)
var y string //@string,hover("string", string)
_ = make([]int, 0) //@make,hover("make", make)
}