1
0
mirror of https://github.com/golang/go synced 2024-11-12 00:20:22 -07:00
go/test/bugs/bug051.go
Robert Griesemer e5373f27d0 - added 2 bug tests
SVN=123220
2008-06-17 16:04:33 -07:00

16 lines
293 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() int {
return 0;
}
func main() {
const n = f(); // should report only one error
}