Skip to content

Commit

Permalink
Add unsuported scaladoc change
Browse files Browse the repository at this point in the history
Scaladoc relies heavily on the assumption that there is only one type
clause (so much so it has trouble with some already valid extension
methods)
Therefore support has not yet been extended to interweaved methods
  • Loading branch information
Sporarum committed Jan 26, 2022
1 parent dff1924 commit 93ff8f1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scaladoc-testcases/src/tests/methodsAndConstructors.scala
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,6 @@ class Methods:
def withImplicitParam2(v: String)(implicit ab: Double, a: Int, b: String): String
= ???

def clauseInterweaving[T](x: T)[U](y: U)(using (T,U)): (T,U)
= ???

0 comments on commit 93ff8f1

Please sign in to comment.