2008-09-25 21:31:03 -06:00
|
|
|
// 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
|
2008-09-29 14:16:22 -06:00
|
|
|
import os "os"
|
2009-09-17 11:27:04 -06:00
|
|
|
type _ os.Error
|
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
|
|
|
}
|