This commit is contained in:
Eugene Yokota
2016-01-24 08:56:46 +01:00
committed by Martin Duhem
parent afa8603ef7
commit 27039e2b3c
2 changed files with 12 additions and 0 deletions
@@ -0,0 +1,11 @@
package example
class A {
case class B(x: Int)
def c = B
}
object A {
def main(args: Array[String]): Unit = {
(new A).c
}
}
@@ -0,0 +1 @@
> run