date and time created 90/06/25 15:33:59 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 26 Jun 1990 06:33:59 +0000 (22:33 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 26 Jun 1990 06:33:59 +0000 (22:33 -0800)
SCCS-vsn: old/dbx/tests/mod/imported.mod 5.1

usr/src/old/dbx/tests/mod/imported.mod [new file with mode: 0644]

diff --git a/usr/src/old/dbx/tests/mod/imported.mod b/usr/src/old/dbx/tests/mod/imported.mod
new file mode 100644 (file)
index 0000000..516e344
--- /dev/null
@@ -0,0 +1,13 @@
+implementation module imported;
+
+type
+    OT = integer;
+var
+    p : OT;
+
+procedure Blah;
+begin
+    p := 3;
+end Blah;
+
+end imported.