mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 07:14:21 +07:00
11 lines
196 B
Java
11 lines
196 B
Java
import org.junit.jupiter.api.*;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Contracts {
|
|
|
|
void foo(@Nullable Object o) {
|
|
Assertions.assertNotNull(o);
|
|
String s = o.toString();
|
|
}
|
|
|
|
} |