blob: a1bd6e25efae23ee88d68625e9a5233d6f5c69c2 [file] [log] [blame]
public class AnotherTestClass {
public static void main(String[] args) throws IOException {
test(getnu<caret>);
}
private static void test(int i) {
}
public static NumberProvider getNumProvider() {
return new NumberProvider();
}
public static int getNumber() {
return 1;
}
private static class NumberProvider {
public int getNumber() {
return 1;
}
}
}