2012-02-16 21:49:30 -07:00
|
|
|
// errorcheck
|
2008-09-25 21:31:03 -06:00
|
|
|
|
|
|
|
// 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
|
2008-09-29 14:16:22 -06:00
|
|
|
import os "os"
|
2011-10-31 15:50:38 -06:00
|
|
|
type _ os.FileInfo
|
2008-09-29 14:16:22 -06:00
|
|
|
func f() (os int) {
|
2009-08-17 14:30:22 -06:00
|
|
|
// In the next line "os" should refer to the result variable, not
|
|
|
|
// to the package.
|
|
|
|
v := os.Open("", 0, 0); // ERROR "undefined"
|
|
|
|
return 0
|
2008-09-25 21:31:03 -06:00
|
|
|
}
|