Closed
Description
Compiler version
3.1.2-RC2
Minimized example
Generated documentation for methods from extensions have signatures without parameters.
class A
extension (a: A) def fun(x: Int) = x + 1
Output
Expectation
Output should show proper signature for method fun. In this example it should be: def fun(x: Int): Int