pascalabcnet/TestSuite/errors/err0338_nested_external_function.pas
Бондарев Иван a0ac0a1a3a fix #2075
2019-08-18 13:56:13 +02:00

10 lines
153 B
ObjectPascal

procedure p1;
function GetDC(hwnd: System.IntPtr): System.IntPtr;
external 'user32.dll';
begin
GetDC(System.IntPtr.Zero);
end;
begin
p1;
end.