lean4-htt/tests/lean/run/447_lean3.lean
2020-11-14 18:04:22 -08:00

11 lines
125 B
Text

inductive S
| mk : (_foo : Nat → Int) → S
namespace S
def bar (s : S) : Nat := 0
variable (s : S)
#check s.bar
end S