blob: 8a3a824c50e9e4568a908d3db28fe61836623473 [file] [log] [blame]
// "Pull method 'foo' to 'Int'" "true"
public class Test implements Int {
@Override
public void foo(){}
}
interface Int {
void foo();
}