mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-23 04:02:39 +02:00
18 lines
164 B
ObjectPascal
18 lines
164 B
ObjectPascal
unit TestWatchesUnitStruct;
|
|
{$mode objfpc}{$H+}{$NOTES off}
|
|
|
|
interface
|
|
uses sysutils, types;
|
|
|
|
procedure Test1;
|
|
|
|
implementation
|
|
|
|
|
|
procedure Test1;
|
|
begin
|
|
end;
|
|
|
|
end.
|
|
|