lean4-htt/old_tests/tests/lean/inline_issue.lean
2018-04-10 12:56:55 -07: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)