blob: cbfebf7e1842d1891b35842b33dff09df67093b3 [file] [log] [blame]
Russ Coxf1550482010-03-03 17:23:47 -08001// $G $D/empty.go && errchk $G $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
Rob Pike501f0b52012-02-23 18:47:26 +11007// Verify that various kinds of "imported and not used"
8// errors are caught by the compiler.
9// Does not compile.
Russ Coxf1550482010-03-03 17:23:47 -080010
Rob Pike501f0b52012-02-23 18:47:26 +110011package main
Russ Coxf1550482010-03-03 17:23:47 -080012
13// standard
14import "fmt" // ERROR "imported and not used.*fmt"
15
16// renamed
17import X "math" // ERROR "imported and not used.*math"
18
19// import dot
20import . "bufio" // ERROR "imported and not used.*bufio"
21
22// again, package without anything in it
23import "./empty" // ERROR "imported and not used.*empty"
24import Z "./empty" // ERROR "imported and not used.*empty"
25import . "./empty" // ERROR "imported and not used.*empty"
26