lean2/tests/lean/run/t4.lean
2014-08-07 16:59:08 -07:00

13 lines
214 B
Text

namespace foo
definition f.{l} (A : Type.{l}) : Type.{l} := A
check f.{1}
end foo
variable N : Type.{1}
section
parameter A : Type
definition g (a : A) (B : Type) : A := a
check g.{2}
end
check g.{2 3}