blob: 6cd6ee69d28a596162995f75e270e8abb2bf533b [file] [log] [blame]
package simple_in;
public class TestNestedCalls {
public static String toInline(String s, String s2) {
return s;
}
static class Inner {
void bar() {
System.out.println(
TestNestedCalls.toInline("outer",
TestNestedCalls.toInline("inner", "hello")));
}
}
}