blob: 1e15f83aa4b160cfd2a99b03288715d5a076070e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ %FAIL }
uses uimpluni1;
Type
BEC_Single_Error = record
E : integer;
M : string [80];
end;
Const
BEC_Err_Msgs: array [0..1] of BEC_Single_Error =
((E : uimpluni1.ICanUseThis; M : '[1] No Error'),
(E : uimpluni2.ICantUseThis; M : '[10000] A Bug?'));
begin
end.
|