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