9 lines
155 B
Text
9 lines
155 B
Text
import Lean
|
|
|
|
inductive MyEmpty
|
|
|
|
def f (x : MyEmpty) : Nat :=
|
|
MyEmpty.casesOn x
|
|
|
|
set_option trace.Compiler.result true
|
|
#eval Lean.Compiler.compile #[``f]
|