lean4-htt/tests/lean/634.lean
2017-03-09 18:41:19 -08:00

17 lines
298 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 n
#check @A n
set_option pp.full_names false
#check @foo.A n
#check @A n
end
end foo