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