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
Seems like MicroHs doesn't like this, I am not sure whether this is a GHC extension to the TupleSections extension that isn't supposed to be supported, or whether it is a genuine bug.
module Example2(main) where
import Prelude
f :: Bool -> Int -> (Bool, String, Int)
f = (,"Hello World",)
main :: IO ()
main = pure ()
Seems like MicroHs doesn't like this, I am not sure whether this is a GHC extension to the TupleSections extension that isn't supposed to be supported, or whether it is a genuine bug.
This fails on MicroHs:
But works on GHC 9.8:
Taken from tcrun024.hs.
The text was updated successfully, but these errors were encountered: