mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:27:55 +02:00
12 lines
68 B
ObjectPascal
12 lines
68 B
ObjectPascal
type
|
|
p = ^x;
|
|
x = byte;
|
|
|
|
var
|
|
b : p;
|
|
|
|
begin
|
|
b^:=12;
|
|
end.
|
|
|