pascalabcnet/TestSuite/errors/err0338_nested_external_function.pas

10 lines
153 B
ObjectPascal
Raw Normal View History

2019-08-18 14:56:13 +03:00
procedure p1;
function GetDC(hwnd: System.IntPtr): System.IntPtr;
external 'user32.dll';
begin
GetDC(System.IntPtr.Zero);
end;
begin
p1;
end.