We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c408f6f commit 60efdfcCopy full SHA for 60efdfc
tests/pos/i2637.scala
@@ -0,0 +1,10 @@
1
+object Hello {
2
+ def main(args: Array[String]): Unit = {
3
+ sealed trait Wat[T]
4
+
5
+ implicit def intWat: Wat[Int] = ???
6
+ implicit def listWat[T](implicit tWat: Wat[T]): Wat[List[T]] = new Wat{}
7
8
+ def stuff[T](implicit implicitWat: => Wat[List[T]]): Unit = ???
9
+ }
10
+}
0 commit comments