mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-21 22:26:16 +02:00
13 lines
182 B
ObjectPascal
13 lines
182 B
ObjectPascal
unit tfoo.Unit1;
|
|
{$mode ObjFPC}{$H+}
|
|
interface
|
|
type
|
|
bar = (fu1_b_a, fu1_b_b);
|
|
abc = (fu1_a_a, fu1_a_b);
|
|
u1 = (fu1_u_a, fu1_u_b, tbar, unit1, project1);
|
|
|
|
implementation
|
|
|
|
end.
|
|
|