This commit is contained in:
Eugene Yokota 2016-01-23 19:35:26 -05:00 committed by Martin Duhem
parent afa8603ef7
commit 27039e2b3c
2 changed files with 12 additions and 0 deletions

View File

@ -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
}
}

View File

@ -0,0 +1 @@
> run