Files
moxa/_test/op11.go
Marc Vertes 2c92a7c7ab fix: do not panic when assigning to _ (blank) var.
Fix interp.isEmptyInterface to tolerate a nil type.

Fixes #1619
2024-04-02 19:18:03 +02:00

11 lines
88 B
Go

package main
func main() {
a, b := 1, 2
_ = a + b
println("ok")
}
// Output:
// ok