blob: 7b1f39bc7052506c2a34873d44bf897b22b451e6 [file] [log] [blame]
// "Create Method 'test'" "true"
public interface Test {
}
class Foo {
void bar() {
Test test = null;
test.te<caret>st();
}
}