issue8828.go 364 B

12345678910111213141516
  1. // compile
  2. // Copyright 2014 The Go Authors. All rights reserved.
  3. // Use of this source code is governed by a BSD-style
  4. // license that can be found in the LICENSE file.
  5. // Issue 8828: compiling a file with -compiler=gccgo fails if a .c file
  6. // has the same name as compiled directory.
  7. package cgotest
  8. import "cgotest/issue8828"
  9. func p() {
  10. issue8828.Bar()
  11. }