mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
test++
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
interface I {
|
||||
boolean isFoo();
|
||||
}
|
||||
|
||||
class RRR implements I {
|
||||
public boolean isFooInverted() {
|
||||
return false;
|
||||
}
|
||||
|
||||
{
|
||||
boolean foo = !isFooInverted();
|
||||
}
|
||||
|
||||
void g(I i) {
|
||||
boolean foo = i.isFoo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user