4821af8685
See new test for motivating example.
9 lines
191 B
Text
9 lines
191 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
|