4 lines
90 B
Text
4 lines
90 B
Text
inductive Foo {x : Nat} : Type where
|
|
| foo : Foo
|
|
|
|
def bar := (fun _ : Foo => 0) Foo.foo
|