blob: 93b6835bedbee9bd37f9b095122b3538182599c9 [file] [log] [blame]
public class Test{
public class F {}
public int x(F f) {
return 1;
}
public static void main(String[] args) {
Test test = new Test();
test.x(new F())<caret>;
}
}