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
3.3.0-RC1-bin-20230109-f56089b-NIGHTLY
package test trait Ctx object Ops: extension (i: Int) def foo() = i + 1 extension (using Ctx)(i: Int) def bar() = i + 2 extension (i: Int)(using Ctx) def baz() = i + 3
The first (i: Int) in the signature of each extension should not be there
(i: Int)
The text was updated successfully, but these errors were encountered:
Fix: Remove the duplicate parameter when generating the scaladoc. (#1…
6e5be23
…7097) When generating Scaladoc, a duplicate of the parameter appears at the beginning of each signature. The solution here was to remove this line, as the parameter is already present in the argsSig value. Before : <img width="300" alt="Screenshot 2023-03-13 at 15 25 43" src="https://user-images.githubusercontent.com/44496264/224735195-8ff3f79a-83d9-4fa0-a5af-99da5aa30b9c.png"> After : <img width="300" alt="Screenshot 2023-03-13 at 15 24 05" src="https://user-images.githubusercontent.com/44496264/224735171-3eb67419-8b98-499e-a180-58202b54826b.png"> I didn't do a test because I don't think there is one (or I couldn't find it). But if needed, a next PR or a next commit to add them can be done. Fixes: #16647
extension
Successfully merging a pull request may close this issue.
Compiler version
3.3.0-RC1-bin-20230109-f56089b-NIGHTLY
Minimized code
Output
Expectation
The first
(i: Int)
in the signature of each extension should not be thereThe text was updated successfully, but these errors were encountered: