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

Visibility not respected when generating factory methods for UnionType #36

Open
ax0l0tl opened this issue Jan 29, 2024 · 0 comments
Open
Labels
bug Something isn't working

Comments

@ax0l0tl
Copy link
Member

ax0l0tl commented Jan 29, 2024

Reproduce:

static class Outer
{
 [UnionType(CaseOrder = CaseOrder.AsDeclared)]
 public partial record InitResult
 {
   public record Sync_ : InitResult;
   public record OneTimeSync_(string TempRepoFolder) : InitResult;
   public record NoSync_() : InitResult;
 }
}

Partial record type is generated with public visibiltiy but should be internal.

@ax0l0tl ax0l0tl added the bug Something isn't working label Jan 29, 2024
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

1 participant