1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-19 07:22:03 +01:00
ebiten/internal/shader/testdata/issue1248.go

10 lines
109 B
Go
Raw Normal View History

package main
func Foo() vec2 {
var a, b vec2
a, b = b, a
var c, d, e vec2
c, d, e = d, e, c
return a
}