lean2/tests/lean/626a.lean

10 lines
187 B
Text
Raw Normal View History

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