blob: 0d7c85a9084328341ef6af0ebf4e914578b3f621 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
program tmacpas1;
{Tests of mac pascal constructs, concerning two units}
{$MODE MACPAS}
uses
umacpas1;
{** Test exportable macros **}
{$IFC UNDEFINED UMACPAS_COMP_VAR }
{$NOTE In using unit: UMACPAS_COMP_VAR is undefined}
{$ERRORC UMACPAS_COMP_VAR should be defined}
{$ELSEC}
{$IFC UMACPAS_COMP_VAR }
{$NOTE In using unit: UMACPAS_COMP_VAR is true}
{$ELSEC}
{$NOTE In using unit: UMACPAS_COMP_VAR is false}
{$ERRORC UMACPAS_COMP_VAR should be true}
{$ENDC}
{$ENDC}
{$IFC UNDEFINED UMACPAS_PRE_IMPL_COMP_VAR }
{$ERRORC UMACPAS_PRE_IMPL_COMP_VAR is not defined}
{$ENDC}
{$IFC UNDEFINED UMACPAS_PRE_IMPL_COMP_VAR }
{$ERRORC UMACPAS_PRE_IMPL_COMP_VAR is defined, while it shoud not}
{$ENDC}
{** Test J directive for var and external for proc **}
{$J+}
var
nisse: Integer; {Is available in Umacpas}
{$J-}
function Get84: Integer;
external;
begin
Writeln(nisse);
Writeln(Get84);
if nisse <> 42 then
halt(1);
if Get84 <> 84 then
halt(1);
end.
|