blob: f358038cb3b7aa33dc9282cc341052051d968e85 (
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
|
uses
erroru;
var
a1,a2 : ansistring;
function f1 : ansistring;
begin
f1:='';
end;
function f2 : ansistring;
begin
f2:='Hello';
end;
begin
a1:='';
a2:='Hello';
if a1<>'' then
do_error(1000);
if a2='' then
do_error(1001);
if ''<>a1 then
do_error(1002);
if ''=a2 then
do_error(1003);
if f1<>'' then
do_error(1004);
if f2='' then
do_error(1005);
if ''<>f1 then
do_error(1006);
if ''=f2 then
do_error(1007);
end.
|