blob: 96c00011466e1e816a1688b7d2f3084381c2bb08 [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.NotNull;
class A {
@Nullable
public Object methodFromA(@NotNull String s) {
return null;
}
}