mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
154f86e6c1
Fixes #1328
13 lines
126 B
Go
13 lines
126 B
Go
package main
|
|
|
|
func Foo() (int, int) {
|
|
return 1, 1
|
|
}
|
|
|
|
func Bar() {
|
|
_, _ = Foo()
|
|
a, _ := Foo()
|
|
_, b := Foo()
|
|
_, _ = a, b
|
|
}
|