diff options
| author | Pierre-Marie Pédrot | 2014-05-30 12:03:21 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2014-05-30 12:03:21 +0200 |
| commit | efb5ba8c57208313d03a5a84ec387244082d23c6 (patch) | |
| tree | 73189100ddeda07b93048a9aae0e5750a9d087e1 /test-suite | |
| parent | 744e49018cb5c9cfb662c950433c82006ca64988 (diff) | |
Adding test-suite for bug #3355.
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/3355.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3355.v b/test-suite/bugs/closed/3355.v new file mode 100644 index 0000000000..46a5714781 --- /dev/null +++ b/test-suite/bugs/closed/3355.v @@ -0,0 +1,6 @@ +Inductive paths {A} (x : A) : A -> Type := idpath : paths x x. +Goal forall A B : Set, @paths Type A B -> @paths Set A B. +Proof. + intros A B H. + Fail exact H. +Abort. |
