blob: ad33d80868af4984a34778d287f080f0382d5bd8 [file] [log] [blame]
interface Foreign {
}
class ForeignImpl implements Foreign {
}
public abstract class Test1 {
int field;
void <caret>foo (Foreign f) {
field++;
}
void bar () {
foo(new ForeignImpl());
}
}