@@ -0,0 +1,16 @@
+uses impluni1;
+
+ Type
+ BEC_Single_Error = record
+ E : integer;
+ M : string [80];
+ end;
+ Const
+ BEC_Err_Msgs: array [0..1] of BEC_Single_Error =
+ ((E : impluni1.ICanUseThis; M : '[1] No Error'),
+ (E : impluni2.ICantUseThis; M : '[10000] A Bug?'));
+begin
+end.
@@ -0,0 +1,13 @@
+unit impluni1;
+interface
+uses impluni2;
+const
+ ICanUseThis = 1;
+implementation
@@ -0,0 +1,10 @@
+unit impluni2;
+ ICantUseThis = 10000;