You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a variant of issue #1722 aka bug337.go
cat > foo.go << _EOF_
package main
import "unsafe"
func main() {
unsafe.Alignof(0)
}
_EOF_
6g foo.go
foo.go:6: 4 not used
The error message should say Alignof(0), or "function call", or many other
things, but definitely not "4".