aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorMakarius Wenzel1999-07-29 20:20:26 +0000
committerMakarius Wenzel1999-07-29 20:20:26 +0000
commit21270199c9137cc836247d6d219e9ef84e4e14cd (patch)
treed2564de0c87fc5fd2daf29c46701066a089b14ed /etc
parent0faa0cd52509eca8fc78fb1d840f808810532c25 (diff)
Test files for multiple file handling with Isabelle/Isar;
Diffstat (limited to 'etc')
-rw-r--r--etc/isar/multiple/A.thy7
-rw-r--r--etc/isar/multiple/B.thy4
-rw-r--r--etc/isar/multiple/C.thy4
-rw-r--r--etc/isar/multiple/D.thy4
-rw-r--r--etc/isar/multiple/README3
5 files changed, 22 insertions, 0 deletions
diff --git a/etc/isar/multiple/A.thy b/etc/isar/multiple/A.thy
new file mode 100644
index 00000000..7ad1ddf6
--- /dev/null
+++ b/etc/isar/multiple/A.thy
@@ -0,0 +1,7 @@
+
+theory A = Pure:;
+
+consts foo :: 'a;
+consts bar :: 'a;
+
+end;
diff --git a/etc/isar/multiple/B.thy b/etc/isar/multiple/B.thy
new file mode 100644
index 00000000..2828c655
--- /dev/null
+++ b/etc/isar/multiple/B.thy
@@ -0,0 +1,4 @@
+
+theory B = Pure:;
+
+end;
diff --git a/etc/isar/multiple/C.thy b/etc/isar/multiple/C.thy
new file mode 100644
index 00000000..498e138f
--- /dev/null
+++ b/etc/isar/multiple/C.thy
@@ -0,0 +1,4 @@
+
+theory C = A + B:;
+
+end;
diff --git a/etc/isar/multiple/D.thy b/etc/isar/multiple/D.thy
new file mode 100644
index 00000000..ed405e30
--- /dev/null
+++ b/etc/isar/multiple/D.thy
@@ -0,0 +1,4 @@
+
+theory D = Pure:;
+
+end;
diff --git a/etc/isar/multiple/README b/etc/isar/multiple/README
new file mode 100644
index 00000000..ad57b449
--- /dev/null
+++ b/etc/isar/multiple/README
@@ -0,0 +1,3 @@
+
+Test files for multiple file handling with Isabelle/Isar
+(see also isa/multiple/README).