ebiten/internal/shader/testdata/blank.go
2020-09-13 22:36:41 +09:00

13 lines
126 B
Go

package main
func Foo() (int, int) {
return 1, 1
}
func Bar() {
_, _ = Foo()
a, _ := Foo()
_, b := Foo()
_, _ = a, b
}