mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 17:52:27 +07:00
11 lines
217 B
Java
11 lines
217 B
Java
@javax.annotation.ParametersAreNonnullByDefault
|
|
interface I {
|
|
void foo(Object o);
|
|
}
|
|
|
|
@javax.annotation.ParametersAreNonnullByDefault
|
|
final class A implements I {
|
|
public void foo(Object o) {
|
|
o.toString();
|
|
}
|
|
} |