mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:08:13 +02:00
13 lines
194 B
ObjectPascal
13 lines
194 B
ObjectPascal
{ %fail }
|
|
{ this is not supposed to compile in non iso mode }
|
|
var
|
|
f : text;
|
|
s : array[0..10] of char;
|
|
begin
|
|
rewrite(f,'tisoext4.tmp');
|
|
write(f,'FPC');
|
|
close(f);
|
|
writeln('ok');
|
|
end.
|
|
|