]> Cypherpunks.ru repositories - gostls13.git/blob - test/fixedbugs/bug374.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / fixedbugs / bug374.go
1 // errorcheck
2
3 // Copyright 2011 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 // issue 1556
8 package foo
9
10 type I interface {
11         m() int
12 }
13
14 type T int
15
16 var _ I = T(0)  // GCCGO_ERROR "incompatible"
17
18 func (T) m(buf []byte) (a int, b xxxx) {  // ERROR "xxxx"
19         return 0, nil
20 }