mirror of
https://github.com/golang/go
synced 2024-11-05 19:46:11 -07:00
60f27f0d6b
import1.go:12:8: error: redefinition of ‘bufio’ import1.go:11:8: note: previous definition of ‘bufio’ was here import1.go:16:2: error: redefinition of ‘fmt’ import1.go:15:2: note: previous definition of ‘fmt’ was here import1.go:11:8: error: imported and not used: bufio R=rsc CC=golang-dev https://golang.org/cl/194165
18 lines
463 B
Go
18 lines
463 B
Go
// errchk $G -e $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.
|
|
|
|
// check for import conflicts
|
|
|
|
package main
|
|
|
|
import "bufio" // GCCGO_ERROR "previous|not used"
|
|
import bufio "os" // ERROR "redeclared|redefinition|incompatible"
|
|
|
|
import (
|
|
"fmt"; // GCCGO_ERROR "previous|not used"
|
|
fmt "math"; // ERROR "redeclared|redefinition|incompatible"
|
|
)
|