Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

inner struct doesn't generate #38

Open
TotallyGamerJet opened this issue Sep 15, 2021 · 0 comments
Open

inner struct doesn't generate #38

TotallyGamerJet opened this issue Sep 15, 2021 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@TotallyGamerJet
Copy link
Contributor

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.

@dennwc dennwc added the bug Something isn't working label Sep 15, 2021
@dennwc dennwc self-assigned this Nov 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants