blob: 6527eb2d361948120d89d6c40b214bc6476467df [file] [log] [blame]
import java.rmi.*;
interface A extends Remote {
void a() throws RemoteException;
}
class D implements A {
public void a() {
}
}
interface NotRemotable {
void a() throws RemoteException;
}
class DNotRemotable implements NotRemotable {
public void a() {
}
}