cxgo
cxgo copied to clipboard
inner struct doesn't generate
Given the following C code:
struct hello {
struct inside {
int x;
} stuff;
};
I get this Go code:
package main
type hello struct {
Stuff inside
}
It doesn't generate the inside struct.