summaryrefslogtreecommitdiff
path: root/test/files/pos5/signatures/Test.java
blob: ac34bcea0c7f6777f76593b1a97bfd071f7c69ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.RandomAccessSeq.Mutable;
import test.Outer;

/* Test correct generation of java signatures. The Outer class should not
 * have a Java signature attribute for the inner method definition. Trait
 * Mutable should have one, even though it is also a nested definition.
 * (but for classes there is a way to tell about nesting to the JVM).
 */
class Test {
    Outer o = new Outer();
}