feat(library): remove occurrences of 'opaque' keyword

This commit is contained in:
Leonardo de Moura 2015-05-08 16:40:03 -07:00
parent cf7e60e5a6
commit 4f0f739ea6
2 changed files with 2 additions and 2 deletions

View file

@ -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 :=

View file

@ -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