summaryrefslogtreecommitdiffstats
path: root/weaver/testsrc/Test.java
blob: 97f37d943376341e41f9252b9f2ab2a21eb82e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
public class Test {
    public static void main(String[] args) {
        foo()
        .
        foo();
    }
    public static Test foo() {
        new Exception().printStackTrace();
        return new Test();
    }
}