URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [go.test/] [test/] [interface/] [receiver1.go] - Rev 700
Compare with Previous | Blame | View Log
// errchk $G $D/$F.go// Copyright 2009 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.// Error messages about missing implicit methods.package maintype T intfunc (t T) V()func (t *T) P()type V interface {V()}type P interface {P()V()}type S struct {T}type SP struct {*T}func main() {var t Tvar v Vvar p Pvar s Svar sp SPv = tp = t // ERROR "does not implement|requires a pointer"_, _ = v, pv = &tp = &t_, _ = v, pv = sp = s // ERROR "does not implement|requires a pointer"_, _ = v, pv = &sp = &s_, _ = v, pv = spp = sp // no error!_, _ = v, pv = &spp = &sp_, _ = v, p}
