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

ImportC declaration of struct in inner scope #20963

Open
WalterBright opened this issue Mar 7, 2025 · 0 comments
Open

ImportC declaration of struct in inner scope #20963

WalterBright opened this issue Mar 7, 2025 · 0 comments
Labels
Feature:ImportC Pertaining to ImportC support

Comments

@WalterBright
Copy link
Member

void cdind() {
        struct ABC         {
            int y;
        } *p;

        {
            struct ABC { int x; } abc;
            abc.x = 1; //  Error: `x` is not a member of `ABC`
        }
}

If about anything is changed here, it compiles correctly

@WalterBright WalterBright added the Feature:ImportC Pertaining to ImportC support label Mar 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature:ImportC Pertaining to ImportC support
Projects
None yet
Development

No branches or pull requests

1 participant