blob: 4a11daa71c77da304f81caffb2ae63c643cd67ed [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
class Contracts {
private void check(@Nullable Object o) {
com.google.common.base.Preconditions.checkNotNull(o);
System.out.println(o.hashCode());
}
}