cxgo icon indicating copy to clipboard operation
cxgo copied to clipboard

inner struct doesn't generate

Open TotallyGamerJet opened this issue 3 years ago • 0 comments

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.

TotallyGamerJet avatar Sep 15 '21 02:09 TotallyGamerJet