diff options
| author | Emilio Jesus Gallego Arias | 2018-11-15 04:18:36 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-11-18 17:17:29 +0100 |
| commit | 177f7fa97dc7a2c4459f1a1047dec801ff0c65c0 (patch) | |
| tree | 6131bedbfc1176d14fdf2919913d703e0ba067e1 /test-suite/bugs | |
| parent | 25e989019f72bd435d84a1d495c7de25165556dd (diff) | |
[options] Remove deprecated option automatic introduction.
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/closed/bug_2001.v | 4 | ||||
| -rw-r--r-- | test-suite/bugs/closed/bug_6661.v | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/test-suite/bugs/closed/bug_2001.v b/test-suite/bugs/closed/bug_2001.v index 652c65706a..31c62b7b36 100644 --- a/test-suite/bugs/closed/bug_2001.v +++ b/test-suite/bugs/closed/bug_2001.v @@ -1,12 +1,10 @@ (* Automatic computing of guard in "Theorem with"; check that guard is not computed when the user explicitly indicated it *) -Unset Automatic Introduction. - Inductive T : Set := | v : T. -Definition f (s:nat) (t:T) : nat. +Definition f : forall (s:nat) (t:T), nat. fix f 2. intros s t. refine diff --git a/test-suite/bugs/closed/bug_6661.v b/test-suite/bugs/closed/bug_6661.v index e88a3704d8..28a9ffc7bd 100644 --- a/test-suite/bugs/closed/bug_6661.v +++ b/test-suite/bugs/closed/bug_6661.v @@ -53,8 +53,6 @@ Definition foo (X:Type) (xy : @total2 X (λ _, X)) : X. exact x. Defined. -Unset Automatic Introduction. - Definition idfun (T : UU) := λ t:T, t. Definition pathscomp0 {X : UU} {a b c : X} (e1 : a = b) (e2 : b = c) : a = c. |
