1// 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
5package bug1
6
7import "./bug0"
8
9// This is expected to fail--t0 is in package bug0 and should not be
10// visible here in package bug1.  The test for failure is in
11// ../bug083.go.
12
13var v1 bug0.t0;	// ERROR "bug0"
14
15