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(); } }