mirror of https://github.com/sbt/sbt.git
Reproduce #2411
This commit is contained in:
parent
afa8603ef7
commit
27039e2b3c
|
|
@ -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
|
||||||
Loading…
Reference in New Issue