blob: b9f973f1724be3ee3bc393d6d2e999ea58ebdefd [file] [log] [blame]
Rémy Oudompheng46bce2a2012-10-07 23:22:01 +02001// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// Verify that various kinds of "imported and not used"
6// errors are caught by the compiler.
7// Does not compile.
8
9package main
10
11// standard
12import "fmt" // ERROR "imported and not used.*fmt"
13
14// renamed
15import X "math" // ERROR "imported and not used.*math"
16
17// import dot
18import . "bufio" // ERROR "imported and not used.*bufio"
19
20// again, package without anything in it
Ian Lance Taylor449cc062015-10-06 17:57:46 -070021import "./empty" // ERROR "imported and not used.*empty"
22import Z "./empty" // ERROR "imported and not used.*empty"
Rémy Oudompheng46bce2a2012-10-07 23:22:01 +020023import . "./empty" // ERROR "imported and not used.*empty"
24