We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the scenario:
interface A { bla: string } interface B extends A{ } interface C extends A, B { }
The generated builder for C will have 2 fields named string _bla, and the generated code won't compile.
C
string _bla
The text was updated successfully, but these errors were encountered:
chore: fix build by fixing route53 definitions
dfbbbee
Work around aws/jsii#525.
chore: fix build by fixing route53 definitions (#2788)
5c90256
feat(java): overhauled structs with native implementation, builders, …
b0b3fd2
…... (#694) Overhauled structs with native implementation, builders, `equals` and `hashCode` and creation from JSII. Fixes #525
Successfully merging a pull request may close this issue.
In the scenario:
The generated builder for
C
will have 2 fields namedstring _bla
, and the generated code won't compile.The text was updated successfully, but these errors were encountered: