You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes using Kotlin code generation mode impossible when allWarningsAsErrors is enabled. See #205. This time it's because the generated method signature doesn't match for binds factory methods.
A few requests to address this:
Fix or suppress the warning in generated code (similar to PR above).
Enable allWarningsAsErrors in Kotlin codegen test suite.
Repro steps or stacktrace:
Add a binds factory method:
@Expose
funfoo(fooImpl:FooImpl): Foo
Compile warning:
w: <redacted>: The corresponding parameter in the supertype 'Objects' is named 'fooImpl'. This may cause problems when calling this function with named arguments.
The text was updated successfully, but these errors were encountered:
This makes using Kotlin code generation mode impossible when
allWarningsAsErrors
is enabled. See #205. This time it's because the generated method signature doesn't match for binds factory methods.A few requests to address this:
allWarningsAsErrors
in Kotlin codegen test suite.Library version:
0.3.4
Repro steps or stacktrace:
Add a binds factory method:
Compile warning:
The text was updated successfully, but these errors were encountered: