mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
15 lines
246 B
Java
15 lines
246 B
Java
interface I {
|
|
/**
|
|
* @throws NullPointerException blah-blah
|
|
*/
|
|
boolean contains(Object o);
|
|
}
|
|
interface My extends java.util.Collection, I {
|
|
boolean contains(Object o);
|
|
}
|
|
class C {
|
|
{
|
|
My m = null;
|
|
m.<caret>contains(null);
|
|
}
|
|
} |