2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
2008-08-01 16:22:41 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package bug1
|
|
|
|
|
2009-06-25 21:13:56 -06:00
|
|
|
import "./bug0"
|
2008-08-01 16:22:41 -06:00
|
|
|
|
2009-01-21 13:52:22 -07:00
|
|
|
// This is expected to fail--t0 is in package bug0 and should not be
|
|
|
|
// visible here in package bug1. The test for failure is in
|
|
|
|
// ../bug083.go.
|
|
|
|
|
2009-07-30 17:46:14 -06:00
|
|
|
var v1 bug0.t0; // ERROR "bug0"
|
|
|
|
|