Hello,
Is multiple definition of procedure like the following not allowed in GPC? =================================================== program myprg; uses mycase; begin x; end. =================================================== unit Mycase; interface uses Myunit; procedure x; implementation procedure X; begin writeln('i am in Mycase'); end; end. ================================================ unit myunit; interface procedure x; implementation procedure x; begin writeln(' i am in myuint'); end; end. ==================================================== This works fine in BP. Thanks and Regards, Hari
HARIKRISHNA Kocheralkota wrote:
Is multiple definition of procedure like the following not allowed in GPC?
FAQ. No. Is on the to-do list.
Frank