mirror of
https://github.com/golang/go
synced 2024-11-06 05:26:11 -07:00
5ddc6bd84d
fixedbugs/issue4510.dir/f2.go:7: error: 'fmt' defined as both imported name and global name f1.go:7: note: 'fmt' imported here R=golang-dev, rsc CC=golang-dev https://golang.org/cl/41530044
10 lines
239 B
Go
10 lines
239 B
Go
// Copyright 2012 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 p
|
|
|
|
import "fmt" // ERROR "fmt redeclared|imported"
|
|
|
|
var _ = fmt.Printf
|