feat(library): remove occurrences of 'opaque' keyword
This commit is contained in:
parent
cf7e60e5a6
commit
4f0f739ea6
2 changed files with 2 additions and 2 deletions
|
@ -415,7 +415,7 @@ inhabited.rec H2 H1
|
|||
definition default (A : Type) [H : inhabited A] : A :=
|
||||
inhabited.rec (λa, a) H
|
||||
|
||||
opaque definition arbitrary (A : Type) [H : inhabited A] : A :=
|
||||
definition arbitrary [irreducible] (A : Type) [H : inhabited A] : A :=
|
||||
inhabited.rec (λa, a) H
|
||||
|
||||
definition Prop.is_inhabited [instance] : inhabited Prop :=
|
||||
|
|
|
@ -3,6 +3,6 @@ open tactic
|
|||
namespace fake_simplifier
|
||||
|
||||
-- until we have the simplifier...
|
||||
opaque definition simp : tactic := apply sorry
|
||||
definition simp : tactic := apply sorry
|
||||
|
||||
end fake_simplifier
|
||||
|
|
Loading…
Reference in a new issue