1321369Sdim// Copyright 2009 The Go Authors.  All rights reserved.
2193323Sed// Use of this source code is governed by a BSD-style
3353358Sdim// license that can be found in the LICENSE file.
4353358Sdim
5353358Sdimpackage bug1
6193323Sed
7193323Sedimport "./bug0"
8193323Sed
9193323Sed// This is expected to fail--t0 is in package bug0 and should not be
10193323Sed// visible here in package bug1.  The test for failure is in
11193323Sed// ../bug083.go.
12193323Sed
13193323Sedvar v1 bug0.t0;	// ERROR "bug0"
14193323Sed
15193323Sed