fpc/tests/webtbs/tw18512.pp

10 lines
188 B
ObjectPascal

{ %norun }
program tw18152;
{$TypedAddress on}
var
p: ^integer;
c: char;
begin
// test that addr return untyped pointer inspite of $TypedAddress directive
p := addr(c)
end.