summaryrefslogtreecommitdiff
path: root/test/files/pos/signatures/Test.java
blob: 78c196526b02b79cf8ae6aa029dddff336883a84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.collection.mutable.IndexedSeq;
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();
}