1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 09:15:01 +03:00
semantic/test/fixtures/go/function-declarations.A.go

10 lines
268 B
Go
Raw Normal View History

2017-02-23 21:06:49 +03:00
package main
2017-08-03 23:59:05 +03:00
func main() {}
func f1() {}
2017-02-23 21:06:49 +03:00
func f2(a int, b, c, d string) int {}
2017-08-03 23:59:05 +03:00
func f2() (int, error) {}
func f2() (result int, err error) {}
2017-11-15 02:33:07 +03:00
func lockedOSThread() bool
2017-11-21 05:45:39 +03:00
func getcontext(c *u) /* int32 */ {}