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
Using Scala 2.13.4 having the following in a file called test.scala
objectfoo {
traitBar {
/** Returns a new [[Bar]]. */deff:Bar=???
}
}
traitBazextends foo.Bar
Then running scaladoc test.scala produces the following warning:
test.scala:3: warning: Could not find any member to link for "Bar".
/** Returns a new [[Bar]] by applying a function. */
^
Problem
I would expect it to properly handle the relative entity link to Bar without producing any warnings; as it does when using 2.13.3, 2.12.13, 2.12.12, 2.11.12
Also, note that everything in that snippet is required to reproduce the error. If you remove the additional trait Baz or you remove the enclosing object foo then it works.