mirror of
https://github.com/golang/go
synced 2024-11-20 06:24:40 -07:00
79606b9952
R=rsc DELTA=18 (18 added, 0 deleted, 0 changed) OCL=33914 CL=33917
12 lines
264 B
Go
12 lines
264 B
Go
// 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.
|
|
|
|
package main
|
|
func f(a T) T { return a } // ERROR "T"
|
|
func main() {
|
|
x := f(0);
|
|
}
|