chore: synthetic := false by default at sorryAx

This commit is contained in:
Leonardo de Moura 2022-05-31 18:08:10 -07:00
parent 2b2f315fb9
commit 2e6dae01f0

View file

@ -175,7 +175,7 @@ structure Subtype {α : Sort u} (p : α → Prop) where
/- Auxiliary axiom used to implement `sorry`. -/
@[extern "lean_sorry", neverExtract]
axiom sorryAx (α : Sort u) (synthetic := true) : α
axiom sorryAx (α : Sort u) (synthetic := false) : α
theorem eq_false_of_ne_true : {b : Bool} → Not (Eq b true) → Eq b false
| true, h => False.elim (h rfl)