Consider the following (invalid) Go code: ```go type x struct{} func (x) Read() ``` The Go1.9 compiler complains with: ``` ./main.go:7:6: missing function body for "_" ``` On Go1.8, it complained with: ``` ./main.go:7: missing function body for "x.Read" ``` Edit: added `type x struct{}`