1a67e69678
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
13 lines
214 B
Text
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}
|
|
|