scala-ide / scala-worksheet

A Scala IDE plugin for a multi-line REPL (called worksheet)
96 stars 24 forks source link

type aliases aren't printed #61

Open dotta opened 12 years ago

dotta commented 12 years ago
object w {
  type X[T] = T
  type A = X[Int] // would be nice to print A = Int
}