diff options
author | Samuel Mimram <smimram@debian.org> | 2006-04-28 14:59:16 +0000 |
---|---|---|
committer | Samuel Mimram <smimram@debian.org> | 2006-04-28 14:59:16 +0000 |
commit | 3ef7797ef6fc605dfafb32523261fe1b023aeecb (patch) | |
tree | ad89c6bb57ceee608fcba2bb3435b74e0f57919e /test-suite/success/Mod_params.v | |
parent | 018ee3b0c2be79eb81b1f65c3f3fa142d24129c8 (diff) |
Imported Upstream version 8.0pl3+8.1alphaupstream/8.0pl3+8.1alpha
Diffstat (limited to 'test-suite/success/Mod_params.v')
-rw-r--r-- | test-suite/success/Mod_params.v | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/test-suite/success/Mod_params.v b/test-suite/success/Mod_params.v index 098de3cf..74228bbb 100644 --- a/test-suite/success/Mod_params.v +++ b/test-suite/success/Mod_params.v @@ -3,10 +3,10 @@ Module Type SIG. End SIG. -Module Type FSIG[X:SIG]. +Module Type FSIG (X: SIG). End FSIG. -Module F[X:SIG]. +Module F (X: SIG). End F. Module Q. @@ -22,57 +22,57 @@ End Q. Module M. Reset M. -Module M[X:SIG]. +Module M (X: SIG). Reset M. -Module M[X,Y:SIG]. +Module M (X Y: SIG). Reset M. -Module M[X:SIG;Y:SIG]. +Module M (X: SIG) (Y: SIG). Reset M. -Module M[X,Y:SIG;Z1,Z:SIG]. +Module M (X Y: SIG) (Z1 Z: SIG). Reset M. -Module M[X:SIG][Y:SIG]. +Module M (X: SIG) (Y: SIG). Reset M. -Module M[X,Y:SIG][Z1,Z:SIG]. +Module M (X Y: SIG) (Z1 Z: SIG). Reset M. -Module M:SIG. +Module M : SIG. Reset M. -Module M[X:SIG]:SIG. +Module M (X: SIG) : SIG. Reset M. -Module M[X,Y:SIG]:SIG. +Module M (X Y: SIG) : SIG. Reset M. -Module M[X:SIG;Y:SIG]:SIG. +Module M (X: SIG) (Y: SIG) : SIG. Reset M. -Module M[X,Y:SIG;Z1,Z:SIG]:SIG. +Module M (X Y: SIG) (Z1 Z: SIG) : SIG. Reset M. -Module M[X:SIG][Y:SIG]:SIG. +Module M (X: SIG) (Y: SIG) : SIG. Reset M. -Module M[X,Y:SIG][Z1,Z:SIG]:SIG. +Module M (X Y: SIG) (Z1 Z: SIG) : SIG. Reset M. -Module M:=(F Q). +Module M := F Q. Reset M. -Module M[X:FSIG]:=(X Q). +Module M (X: FSIG) := X Q. Reset M. -Module M[X,Y:FSIG]:=(X Q). +Module M (X Y: FSIG) := X Q. Reset M. -Module M[X:FSIG;Y:SIG]:=(X Y). +Module M (X: FSIG) (Y: SIG) := X Y. Reset M. -Module M[X,Y:FSIG;Z1,Z:SIG]:=(X Z). +Module M (X Y: FSIG) (Z1 Z: SIG) := X Z. Reset M. -Module M[X:FSIG][Y:SIG]:=(X Y). +Module M (X: FSIG) (Y: SIG) := X Y. Reset M. -Module M[X,Y:FSIG][Z1,Z:SIG]:=(X Z). +Module M (X Y: FSIG) (Z1 Z: SIG) := X Z. Reset M. -Module M:SIG:=(F Q). +Module M : SIG := F Q. Reset M. -Module M[X:FSIG]:SIG:=(X Q). +Module M (X: FSIG) : SIG := X Q. Reset M. -Module M[X,Y:FSIG]:SIG:=(X Q). +Module M (X Y: FSIG) : SIG := X Q. Reset M. -Module M[X:FSIG;Y:SIG]:SIG:=(X Y). +Module M (X: FSIG) (Y: SIG) : SIG := X Y. Reset M. -Module M[X,Y:FSIG;Z1,Z:SIG]:SIG:=(X Z). +Module M (X Y: FSIG) (Z1 Z: SIG) : SIG := X Z. Reset M. -Module M[X:FSIG][Y:SIG]:SIG:=(X Y). +Module M (X: FSIG) (Y: SIG) : SIG := X Y. Reset M. -Module M[X,Y:FSIG][Z1,Z:SIG]:SIG:=(X Z). +Module M (X Y: FSIG) (Z1 Z: SIG) : SIG := X Z. Reset M. |