mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
55f0c983ba
Fixes #1330
12 lines
113 B
Go
12 lines
113 B
Go
package main
|
|
|
|
func Foo() (int, int) {
|
|
return 1, 1
|
|
}
|
|
|
|
func Bar() {
|
|
_, _ = Foo()
|
|
a, _ := Foo()
|
|
_, b := Foo()
|
|
}
|