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
Following code:
interface A<T> { } interface B<T> { } interface Api { check<T>(values: Array<T>): T check<T>(values: Array<A<T> | B<T>>): T }
Is translated to:
external interface A<T> external interface B<T> external interface Api { fun <T> check(values: Array<T>): T fun <T> check(values: Array<dynamic /* A<T> | B<T> */>): T }
Which won't compile without "CONFLICTING_OVERLOADS" suppression
"CONFLICTING_OVERLOADS"
The text was updated successfully, but these errors were encountered:
trilis
Successfully merging a pull request may close this issue.
Following code:
Is translated to:
Which won't compile without
"CONFLICTING_OVERLOADS"
suppressionThe text was updated successfully, but these errors were encountered: