blob: b7f0665288b946829f0fc8d5afd394d9a2240236 [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
class B {
public final A myDelegate = new A();
@Nullable
public Object methodFromA(@NotNull String s) {
return myDelegate.methodFromA(s);
}
}