summaryrefslogtreecommitdiff
path: root/test/files/neg/t5845.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-5845 Advances the example from a crasher to an inference failure.Jason Zaugg2012-05-281-0/+7
The inference failure itself seems like an instance of of SI-3346. But dependent method types (which triggered the crash), can be employed to avoid inferring the type constructor CC. class Num[T] { def mkOps = new Ops class Ops { def +++(rhs: T) = () } } class A { implicit def infixOps[T](lhs: T)(implicit num: Num[T]): num.Ops = num.mkOps implicit val n1: Num[Int] = new Num[Int] { } 5 +++ 5 }