Zulip Chat Archive
Stream: lean4
Topic: Issues with default parameters
Jad Ghalayini (Jan 24 2025 at 15:27):
Hello! I have found what I think is a bug: the following fails to typecheck
class Foo where
x : Nat := by fail
class Bar extends Foo where
x := 0
instance : Bar where
with the error
could not synthesize default value for field 'x' of 'Foo' using tactics
Unfortunately, my experiments hint there are some other bugs hiding behind this one, but it's a start.
Notification Bot (Jan 24 2025 at 15:32):
A message was moved here from #mathlib4 > Premonoidal categories by Eric Wieser.
Jad Ghalayini (Jan 24 2025 at 15:46):
Also, I've got a related issue, which is that the following doesn't work either
class Foo where
x : Nat
hx : x = x
class Bar extends Foo where
hx' : x = x := by rfl
hx := hx'
instance : Bar where
x := 0
I'm not sure if this one is intended behavior, but it also means that my stuff doesn't work!
Jad Ghalayini (Jan 24 2025 at 15:46):
Note that
class Foo where
x : Nat
hx : x = x
class Bar extends Foo where
hx' : x = x := rfl
hx := hx'
instance : Bar where
x := 0
works as expected
Kyle Miller (Jan 24 2025 at 16:58):
Could you please report these issues (https://github.com/leanprover/lean4/issues)? (If you're able to, you may assign them to me too.)
Jad Ghalayini (Jan 24 2025 at 18:06):
Here's a link to the issue: https://github.com/leanprover/lean4/issues/6769
Thanks!
Last updated: May 02 2025 at 03:31 UTC