1// compile
2
3// Copyright 2018 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// Make sure we can correctly compile method expressions
8// where the method is implicitly declared.
9
10package main
11
12import "io"
13
14func main() {
15	err := io.EOF
16	_ = err.Error
17}
18