[ooc-compiler] Bug (?)
Brought to you by:
mva
|
From: Frank H. <hr...@te...> - 2004-10-11 02:41:22
|
I think I found a small bug: trying to make an executable from the two
modules
--
MODULE client;
VAR v*: RECORD a*,b*: INTEGER
END;
END client.
--
MODULE main;
IMPORT client;
BEGIN
client.v.a:=1; client.v.b:=2
END main.
--
yields the following error message:
In file included from obj/client.c:1:
obj/client.d:5: conflicting types for `client__v'
obj/client.oh:12: previous declaration of `client__v'
I don't need a fix for it; just to let you know.
--
Frank Hrebabetzky +55 / 48 / 235 1106
Florianopolis, Brazil
|