mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00
13 lines
80 B
ObjectPascal
13 lines
80 B
ObjectPascal
type
|
|
b = ^x;
|
|
|
|
x = byte;
|
|
|
|
var
|
|
pb : b;
|
|
|
|
begin
|
|
pb^:=10;
|
|
end.
|
|
|