home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-387-Vol-3of3.iso
/
p
/
pascal-.zip
/
pascal-
/
tests
/
deviance
/
scope
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-11-21
|
269 b
|
17 lines
{Miscellaneous errors}
program MiscError;
const
b = c;
type
T = array [5..1] of integer;
U = record x: true end;
V = array [false..true] of integer;
var
x, y, x: integer;
z: V;
begin
y := 1 and 2;
y := 2 * (3+4;
z[1] := &2;
end.