mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
test++
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
interface Foreign {
|
||||
}
|
||||
|
||||
class ForeignImpl implements Foreign {
|
||||
}
|
||||
|
||||
|
||||
public abstract class Test1 {
|
||||
int field;
|
||||
|
||||
void <caret>foo (Foreign f) {
|
||||
field++;
|
||||
}
|
||||
|
||||
void bar () {
|
||||
foo(new ForeignImpl());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user