diff options
author | Hugo Herbelin <Hugo.Herbelin@inria.fr> | 2016-12-05 07:27:06 +0100 |
---|---|---|
committer | Hugo Herbelin <Hugo.Herbelin@inria.fr> | 2017-03-23 21:58:36 +0100 |
commit | 80d36bc6538b7feaab3dfa43f6e234ae85b55692 (patch) | |
tree | d3a36cc8dcaf0542194c9d672396dcad80131b04 /test-suite/output | |
parent | 67f7e1103ffb5dae052595e4db00e0214e54474d (diff) |
A test checking for non-collision of name in irrefutable patterns.
Diffstat (limited to 'test-suite/output')
-rw-r--r-- | test-suite/output/PatternsInBinders.out | 2 | ||||
-rw-r--r-- | test-suite/output/PatternsInBinders.v | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/output/PatternsInBinders.out b/test-suite/output/PatternsInBinders.out index c012a86b0..95be04c32 100644 --- a/test-suite/output/PatternsInBinders.out +++ b/test-suite/output/PatternsInBinders.out @@ -37,3 +37,5 @@ fun '(x, y) '(z, t) => swap (x, y) = (z, t) : A * B -> B * A -> Prop forall '(x, y) '(z, t), swap (x, y) = (z, t) : Prop +fun (pat : nat) '(x, y) => x + y = pat + : nat -> nat * nat -> Prop diff --git a/test-suite/output/PatternsInBinders.v b/test-suite/output/PatternsInBinders.v index 6fa357a90..0bad472f4 100644 --- a/test-suite/output/PatternsInBinders.v +++ b/test-suite/output/PatternsInBinders.v @@ -64,3 +64,6 @@ Check fun '((x,y) : A*B) '(z,t) => swap (x,y) = (z,t). Check forall '(x,y) '((z,t) : B*A), swap (x,y) = (z,t). End Suboptimal. + +(** Test risk of collision for internal name *) +Check fun pat => fun '(x,y) => x+y = pat. |