blob: 73bb64688aeba2fab56c63a361ff156c0d190fad [file] [log] [blame]
Russ Cox2b1c9b42012-02-16 23:49:30 -05001// errorcheck
Ian Lance Taylor79606b92009-08-26 16:24:51 -07002
3// Copyright 2009 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
7package main
Russ Cox680ee6a2009-10-08 23:03:34 -07008func f(a T) T { return a } // ERROR "undefined"
Ian Lance Taylor79606b92009-08-26 16:24:51 -07009func main() {
10 x := f(0);
Russ Cox680ee6a2009-10-08 23:03:34 -070011 _ = x;
Ian Lance Taylor79606b92009-08-26 16:24:51 -070012}