tw18512.pp 188 B

12345678910
  1. { %norun }
  2. program tw18152;
  3. {$TypedAddress on}
  4. var
  5. p: ^integer;
  6. c: char;
  7. begin
  8. // test that addr return untyped pointer inspite of $TypedAddress directive
  9. p := addr(c)
  10. end.