]> Cypherpunks.ru repositories - gostls13.git/blob - misc/cgo/test/issue8828.go
e9ec2652683683aa24f3ad50c5ec21958abc1e30
[gostls13.git] / misc / cgo / test / issue8828.go
1 // Copyright 2014 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
5 //go:build cgo
6
7 // Issue 8828: compiling a file with -compiler=gccgo fails if a .c file
8 // has the same name as compiled directory.
9
10 package cgotest
11
12 import "misc/cgo/test/issue8828"
13
14 func p() {
15         issue8828.Bar()
16 }