mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:49:33 +02:00
11 lines
166 B
ObjectPascal
11 lines
166 B
ObjectPascal
{ %fail }
|
|
{ this is not supposed to compile in non iso mode }
|
|
var
|
|
f : file of byte;
|
|
b : byte;
|
|
begin
|
|
rewrite(f,'tisoext1.tmp');
|
|
write(f,123);
|
|
close(f);
|
|
end.
|