File: tproject1.unit1.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (20 lines) | stat: -rw-r--r-- 410 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
unit tproject1.Unit1;
{$mode ObjFPC}{$H+}
interface
type
  bar = (b1, b2);
  abc = (a1, a2);

  unit1 = (p1u1_unit1_a, p1u1_unit1_b);
  project1 = (p1u1_project1_a, p1u1_project1_b);
  tfoo = (p1u1_tfoo_a, p1u1_tfoo_b);

  wrong_member_unit1 = (tbar_unit1_a, tbar_unit1_b);
  wrong_member_project1 = (tbar_project1_a, tbar_project1_b);
  wrong_member_tfoo = (tbar_tfoo_a, tbar_tfoo_b);


implementation

end.