Nested constructors were being processed using an extended local context. Fix issue reported by @JasonGross at Zulip. closes #338
8 lines
160 B
Text
8 lines
160 B
Text
inductive Foo (Name : Type) where
|
|
| foo (x : Name)
|
|
|
|
structure Name' where
|
|
name : Unit
|
|
|
|
def bar : Foo Name' → Type
|
|
| Foo.foo (_root_.Name'.mk name) => sorry
|