URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [go.test/] [test/] [func3.go] - Rev 700
Compare with Previous | Blame | View Log
// errchk $G $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.package maintype t1 inttype t2 inttype t3 intfunc f1(*t2, x t3) // ERROR "named"func f2(t1, *t2, x t3) // ERROR "named"func f3() (x int, *string) // ERROR "named"func f4() (t1 t1) // legal - scope of parameter named t1 starts in body of f4.
