{}
run-icon
main.go
// Online Go compiler to run Golang program online // Print "Try programiz.pro" message package main import "fmt" type D struct { } func (d D) Error() string { return "ok" } func main() { var a error a = D{} fmt.Println(a) }
Output