summaryrefslogtreecommitdiff
path: root/test-suite/modules/sig.v
diff options
context:
space:
mode:
authorGravatar Samuel Mimram <smimram@debian.org>2006-04-28 14:59:16 +0000
committerGravatar Samuel Mimram <smimram@debian.org>2006-04-28 14:59:16 +0000
commit3ef7797ef6fc605dfafb32523261fe1b023aeecb (patch)
treead89c6bb57ceee608fcba2bb3435b74e0f57919e /test-suite/modules/sig.v
parent018ee3b0c2be79eb81b1f65c3f3fa142d24129c8 (diff)
Imported Upstream version 8.0pl3+8.1alphaupstream/8.0pl3+8.1alpha
Diffstat (limited to 'test-suite/modules/sig.v')
-rw-r--r--test-suite/modules/sig.v28
1 files changed, 14 insertions, 14 deletions
diff --git a/test-suite/modules/sig.v b/test-suite/modules/sig.v
index eb8736bb..4cb6291d 100644
--- a/test-suite/modules/sig.v
+++ b/test-suite/modules/sig.v
@@ -1,29 +1,29 @@
Module M.
Module Type SIG.
- Parameter T:Set.
- Parameter x:T.
+ Parameter T : Set.
+ Parameter x : T.
End SIG.
- Module N:SIG.
- Definition T:=nat.
- Definition x:=O.
+ Module N : SIG.
+ Definition T := nat.
+ Definition x := 0.
End N.
End M.
-Module N:=M.
+Module N := M.
Module Type SPRYT.
- Declare Module N.
- Definition T:=M.N.T.
- Parameter x:T.
+ Module N.
+ Definition T := M.N.T.
+ Parameter x : T.
End N.
End SPRYT.
-Module K:SPRYT:=N.
-Module K':SPRYT:=M.
+Module K : SPRYT := N.
+Module K' : SPRYT := M.
Module Type SIG.
- Definition T:Set:=M.N.T.
- Parameter x:T.
+ Definition T : Set := M.N.T.
+ Parameter x : T.
End SIG.
-Module J:SIG:=M.N.
+Module J : SIG := M.N. \ No newline at end of file