1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-17 22:42:02 +01:00
ebiten/internal/shader/testdata/issue1299.go
2020-08-12 13:47:22 +09:00

10 lines
81 B
Go

package main
func Foo() int {
x := 1
x *= 2
x = x + 2
x = 2 - x
return x
}