You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When utilizing the old musical coinduction notation, Auto will attempt to fill flat-involved goals with the incorrect projection x .♭, instead of the correct ♭ x.
To replicate: C-c C-a in the hole.
{-# OPTIONS --guardedness #-}open importCodata.Musical.Notationdata⊤:Setwherett : ⊤
test : ∞ ⊤ → ⊤
test x ={!!}
Produces:
test x = x .♭
Expected:
test x = ♭ x
The text was updated successfully, but these errors were encountered:
When utilizing the old musical coinduction notation, Auto will attempt to fill flat-involved goals with the incorrect projection
x .♭
, instead of the correct♭ x
.To replicate:
C-c C-a
in the hole.Produces:
test x = x .♭
Expected:
test x = ♭ x
The text was updated successfully, but these errors were encountered: