blob: 8bb2a94a24fd7f13a5ba8a41707d09765f4c2df0 [file] [log] [blame]
Russ Cox9a861b62009-05-08 16:40:55 -07001// errchk $G -e $D/$F.go
2
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// check for import conflicts
8
9package main
10
Ian Lance Taylor60f27f02010-02-01 16:35:23 -080011import "bufio" // GCCGO_ERROR "previous|not used"
Russ Cox38df5ec2009-08-19 15:18:08 -070012import bufio "os" // ERROR "redeclared|redefinition|incompatible"
13
Russ Cox9a861b62009-05-08 16:40:55 -070014import (
Rob Pike4f61fc92010-09-04 10:36:13 +100015 "fmt" // GCCGO_ERROR "previous|not used"
16 fmt "math" // ERROR "redeclared|redefinition|incompatible"
Robert Griesemer60d4e302009-12-10 11:25:54 -080017)