Files
moxa/_test/op10.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

10 lines
74 B
Go

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