lean2/tests/lean/attr_at1.lean

16 lines
149 B
Text

definition f (a : nat) := a + 1
attribute f [reducible] at foo
print f
section
open foo
print f
end
print f
namespace foo
print f
end foo