lean4-htt/tests/lean/eagerUnfoldingIssue.lean
2021-05-02 21:29:32 -07:00

15 lines
193 B
Text

import Lean
namespace Lean.Elab
def f1 (x : Nat) : MetaM Unit := do
logInfo m!"{x}"
pure ()
abbrev M := MetaM Unit
def f2 (x : Nat) : M := do
logInfo m!"{x}"
pure ()
end Lean.Meta