summaryrefslogtreecommitdiff
path: root/tests/tbs/tb0196.pp
blob: d83f141f09de94e9bc416ee763c966c4abc346c0 (plain)
1
2
3
4
5
6
7
8
9
10
{ 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.