summaryrefslogtreecommitdiff
path: root/test/files/run/t0607.scala
blob: 5601494dec3bfd74038de6ad63759cda6e610cbe (plain) (blame)
1
2
3
4
5
6
7
object Test extends Application {
  case class A()
  class B extends A() { override def toString() = "B()" }
  println(A())
  println(new B())
}