1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-22 17:02:04 +01:00
ebiten/internal/shader/testdata/issue1299.go

10 lines
81 B
Go
Raw Normal View History

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