Sign in
go
/
go
/
45f5ef4ed7a774b6911650319a265e17ee9e6e0e
/
.
/
misc
/
cgo
/
test
/
issue4339.c
blob: 15d0004078cfd1cb175e24ff3945082650aba044 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
"issue4339.h"
static
void
impl
(
void
)
{
//printf("impl\n");
}
Issue4339
exported4339
=
{
"bar"
,
impl
};
void
handle4339
(
Issue4339
*
x
)
{
//printf("handle\n");
x
->
bar
();
//printf("done\n");
}