lean2/tests/lean/634.lean
2015-05-28 19:43:49 -07:00

17 lines
303 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
namespace foo
section
parameter (X : Type₁)
definition A {n : } : Type₁ := X
variable {n : }
set_option pp.implicit true
check @A n
set_option pp.full_names true
check @foo.A X n
check @A n
set_option pp.full_names false
check @foo.A X n
check @A n
end
end foo