summaryrefslogtreecommitdiff
path: root/test/files/pos/signatures/Test.java
blob: 3d1e3756a77cda88218f9e38e9e0aa4622b7e22b (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();
}