Main() { Partial t = new Partial(); t.A(); t.B(); // Compiler error IPartial s = new Partial(); s.A(); s.B(); // Runtime error }