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
I'm getting an "Uh oh" error on the following standalone input file on 5595507:
{-# LANGUAGE NoImplicitPrelude #-}
module Arrow where
infixr 3 >>>
infixr 3 ***
infixr 3 &&&
class Arrow a where
(>>>) :: a b c -> a c d -> a b d
arr :: (b -> c) -> a b c
(***) :: a b c -> a b' c' -> a (b,b') (c,c')
(&&&) :: a b c -> a b c' -> a b (c,c')
f &&& g = arr (\b -> (b,b)) >>> f *** g
instance Arrow (->) where
f >>> g = \x -> g (f x)
arr f = f
(f *** g) (x,y) = (f x, g y)
{-# LANGUAGE NoImplicitPrelude #-}
module Exceptions (main) where
mustThrow :: forall p exc. p exc -> ()
mustThrow _ = ()
main :: ()
main = mustThrow (\x -> ())
I'm getting an "Uh oh" error on the following standalone input file on 5595507:
The exact output of LH is:
The text was updated successfully, but these errors were encountered: