2014-06-13 18:00:52 -07:00
|
|
|
namespace foo
|
|
|
|
definition f.{l} (A : Type.{l}) : Type.{l} := A
|
|
|
|
check f.{1}
|
2014-08-07 16:59:08 -07:00
|
|
|
end foo
|
2014-06-13 18:00:52 -07:00
|
|
|
|
2014-10-02 16:20:52 -07:00
|
|
|
constant N : Type.{1}
|
2014-06-13 18:00:52 -07:00
|
|
|
section
|
2014-10-09 07:13:06 -07:00
|
|
|
variable A : Type
|
2014-06-13 18:00:52 -07:00
|
|
|
definition g (a : A) (B : Type) : A := a
|
2014-10-01 10:23:05 -07:00
|
|
|
check g.{_ 2}
|
2014-06-13 18:00:52 -07:00
|
|
|
end
|
|
|
|
check g.{2 3}
|