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