mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-18 19:42:44 +02:00
15 lines
112 B
ObjectPascal
15 lines
112 B
ObjectPascal
unit findref_declaration;
|
|
|
|
interface
|
|
|
|
type
|
|
TMyInt = 1..1000;
|
|
|
|
var
|
|
GlobalCnt: TMyInt;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|