fpc/tests/tbs/tb0196.pp
2000-11-30 22:38:14 +00:00

12 lines
366 B
ObjectPascal

{ Old file: tbs0232.pp }
{ const. procedure variables need a special syntax if they use calling specification modifiers }
const
p1 : procedure;stdcall=nil; { <----- this doesn't what you expect !!!!}
p2 : procedure stdcall=nil; { so delphi supports also this way of }
{ declaration }
begin
end.