Sign in
go
/
gofrontend
/
5e658f4659c551330ea68f5667e4f951b218f32d
/
.
/
libgo
/
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");
}