1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-14 21:12:03 +01:00
ebiten/internal/shader/testdata/blocks2.go

12 lines
100 B
Go
Raw Normal View History

package main
func Foo() vec2 {
x := true
{
x := 0
return vec2(x)
}
_ = x
return vec2(1)
}