2015-05-26 11:33:38 -07:00
|
|
|
namespace foo
|
2016-01-26 18:24:12 -08:00
|
|
|
definition C₁ := nat
|
|
|
|
definition foo (c : C₁) := nat.rec_on c _ _
|
2015-05-26 11:33:38 -07:00
|
|
|
end foo
|
|
|
|
|
|
|
|
namespace boo
|
2016-01-26 18:24:12 -08:00
|
|
|
notation `C₁` := nat
|
|
|
|
definition foo (c : C₁) := nat.rec_on c _ _
|
2015-05-26 11:33:38 -07:00
|
|
|
end boo
|