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
A sub-bug of #273 is that Agda is performing an η-reduction that creates a mismatch between what the user wrote and what the user gets on the Haskell side, e.g.
open importHaskell.Preludepostulate f : Int → Int
test : Int → Int
test x = f x
{-# COMPILE AGDA2HS test #-}
test::Int->Int
test = f
We could investigate how to either instruct Agda not to do these, or reverse the effect if that's impossible in Agda internals.
The text was updated successfully, but these errors were encountered:
A sub-bug of #273 is that Agda is performing an η-reduction that creates a mismatch between what the user wrote and what the user gets on the Haskell side, e.g.
We could investigate how to either instruct Agda not to do these, or reverse the effect if that's impossible in Agda internals.
The text was updated successfully, but these errors were encountered: