lean4-htt/tests/lean/inline_issue.lean
2017-03-09 18:41:19 -08:00

22 lines
369 B
Text

open tactic
meta def f (n : nat) : tactic unit :=
trace "hello" >>
trace "------------" >>
trace_call_stack
meta def g (n : nat) : tactic unit :=
trace "world" >> f n
run_cmd (do
x ← return 5,
x ← return 5,
x ← return 5,
x ← return 5,
x ← return 5,
x ← return 5,
x ← return 5,
x ← return 5,
x ← return 5,
x ← return 5,
g 1)