lean2/tests/lean/634.lean

18 lines
303 B
Text
Raw Normal View History

2015-05-29 02:43:38 +00:00
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