lean2/tests/lean/634d.lean
2015-05-29 15:13:43 -07:00

24 lines
431 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

open nat
section
universe l
definition A {n : } (t : Type.{l}) := t
check A
check _root_.A.{1}
set_option pp.universes true
check A
check _root_.A.{1}
end
section
universe l
parameters {B : Type.{l}}
definition P {n : } (b : B) := b
check P
check @_root_.P.{1} nat
set_option pp.universes true
check P
check _root_.P.{1}
set_option pp.implicit true
check @P 2
check @_root_.P.{1} nat
end