DEBSOURCES
Skip Quicknav
sources / scala / 2.7.7.dfsg-4 / test / files / pos / bug1085.scala
123456789
trait Functor[a] { type MyType[a] } object Test { def listFunctor[a]: Functor[a]{type MyType[x]=List[x]} = new Functor[a] { type MyType[t]=List[t] } }