summaryrefslogtreecommitdiff
path: root/test/files/run/t4794.scala
Commit message (Collapse)AuthorAgeFilesLines
* Intersection types made specializable.Paul Phillips2011-09-061-0/+12
Formerly a specializable type parameter would be missed if in an intersection. trait Trait[@specialized T] { def f[T](x: Foo[T] with Bar) = x } Now that is specialized, as it already was in the "Foo[T]" case. Closes SI-4794, no review.