mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-31 22:42:39 +02:00
12 lines
268 B
ObjectPascal
12 lines
268 B
ObjectPascal
{ %fail }
|
|
|
|
program Project1;
|
|
|
|
var
|
|
Buf: integer absolute Buf;
|
|
|
|
begin
|
|
writeln(Buf); //uncomment and get: test.pas(12,14) Error: Internal error 200104143
|
|
Buf := 1; //uncomment and get: test.pas(14,1) Error: Undefined symbol: U_$P$PROJECT1
|
|
end. //line 14
|