lean2/tests/lean/attr_at3.lean

18 lines
182 B
Text
Raw Normal View History

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