blob: 285b189a7e7fc7f34db81a023f38002922c8a574 [file] [log] [blame]
// "Create Method 'test'" "true"
public interface Test {
void test();
}
class Foo {
void bar() {
Test test = null;
test.test();
}
}