aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2006-07-26 13:42:35 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2006-07-26 13:42:35 +0000
commit51c70ccb7627a871fe7f73632b57a4ca68575f4d (patch)
tree4e52f4c739ba77e0efa135ff7b6597f6b80bb3f3 /etc
parent67b217606f87cb13be362982c2ec7f996f7a281d (diff)
Change to new Isabelle syntax
Diffstat (limited to 'etc')
-rw-r--r--etc/isar/multiple/A.thy3
-rw-r--r--etc/isar/multiple/B.thy6
-rw-r--r--etc/isar/multiple/C.thy5
3 files changed, 8 insertions, 6 deletions
diff --git a/etc/isar/multiple/A.thy b/etc/isar/multiple/A.thy
index 7ad1ddf6..5c11b4fe 100644
--- a/etc/isar/multiple/A.thy
+++ b/etc/isar/multiple/A.thy
@@ -1,5 +1,6 @@
-theory A = Pure:;
+theory A imports Pure
+begin
consts foo :: 'a;
consts bar :: 'a;
diff --git a/etc/isar/multiple/B.thy b/etc/isar/multiple/B.thy
index 2828c655..efebff83 100644
--- a/etc/isar/multiple/B.thy
+++ b/etc/isar/multiple/B.thy
@@ -1,4 +1,4 @@
+theory B imports Pure
+begin
-theory B = Pure:;
-
-end;
+end
diff --git a/etc/isar/multiple/C.thy b/etc/isar/multiple/C.thy
index d295f55a..079a1f78 100644
--- a/etc/isar/multiple/C.thy
+++ b/etc/isar/multiple/C.thy
@@ -1,5 +1,6 @@
(* -*- isar -*- *)
-theory C = A + B:;
+theory C imports A B
+begin
-end;
+end