PX4-Autopilot/misc/pascal/tests/src/501-unit-data.pas
2011-12-19 19:24:09 +00:00

22 lines
290 B
ObjectPascal

{ This file tests only that data can be shared correctly between units }
unit MyDataUnit;
interface
var
mycosx : real;
mysinx : real;
myone : real;
procedure checkvars;
implementation
procedure checkvars;
begin
myone := sqr(mycosx) + sqr(mysinx)
end; { checkvars }
end.