diff options
author | Russ Cox <rsc@golang.org> | 2009-08-19 11:32:46 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-08-19 11:32:46 -0700 |
commit | 033847409e990ce962a147c179a08e2386d0e709 (patch) | |
tree | a23ef375c6d7c21ca3a2497c29ec283f69e8d9ac /test/fixedbugs/bug191.go | |
parent | 42bd476433d24516309e60699ac33709fabe472a (diff) | |
download | golang-033847409e990ce962a147c179a08e2386d0e709.tar.gz |
fix import dot bug
R=ken
OCL=33526
CL=33528
Diffstat (limited to 'test/fixedbugs/bug191.go')
-rw-r--r-- | test/fixedbugs/bug191.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/fixedbugs/bug191.go b/test/fixedbugs/bug191.go new file mode 100644 index 000000000..fe03f646d --- /dev/null +++ b/test/fixedbugs/bug191.go @@ -0,0 +1,13 @@ +// $G $D/bug191.dir/a.go && $G $D/bug191.dir/b.go && $G $D/$F.go && $L $F.$A + +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import . "./a" +import . "./b" + +func main() { +} |