Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / import4.go
blob1ae1d0e4ad3c59ee3d9225e32af8bf834bf47a46
1 // $G $D/empty.go && errchk $G $D/$F.go
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.
7 package main
9 // various kinds of imported and not used
11 // standard
12 import "fmt" // ERROR "imported and not used.*fmt"
14 // renamed
15 import X "math" // ERROR "imported and not used.*math"
17 // import dot
18 import . "bufio" // ERROR "imported and not used.*bufio"
20 // again, package without anything in it
21 import "./empty" // ERROR "imported and not used.*empty"
22 import Z "./empty" // ERROR "imported and not used.*empty"
23 import . "./empty" // ERROR "imported and not used.*empty"