blob: e809990b766a81f6cc9664d989dbef698204c63f [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
Russ Cox38df5ec2009-08-19 15:18:08 -070011import "bufio" // GCCGO_ERROR "previous"
12import bufio "os" // ERROR "redeclared|redefinition|incompatible"
13
Russ Cox9a861b62009-05-08 16:40:55 -070014import (
Russ Cox38df5ec2009-08-19 15:18:08 -070015 "fmt"; // GCCGO_ERROR "previous"
16 fmt "math"; // ERROR "redeclared|redefinition|incompatible"
17)