mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 20:08:12 +02:00
15 lines
209 B
ObjectPascal
15 lines
209 B
ObjectPascal
{ %fail }
|
|
{ this is not supposed to compile in non iso mode }
|
|
var
|
|
f : file of byte;
|
|
b : byte;
|
|
begin
|
|
reset(f,'tisoext1.tmp');
|
|
read(f,b);
|
|
if b<>123 then
|
|
halt(1);
|
|
close(f);
|
|
writeln('ok');
|
|
end.
|
|
|