lean2/tests/lean/626a.lean
2015-05-26 11:33:38 -07:00

9 lines
187 B
Text

namespace foo
definition C¹ := nat
definition foo (c : C¹) := nat.rec_on c _ _
end foo
namespace boo
notation `C¹` := nat
definition foo (c : C¹) := nat.rec_on c _ _
end boo