[GHC] #13087: AlternativeLayoutRule breaks LambdaCase
GHC
ghc-devs at haskell.org
Mon Jan 9 12:28:31 UTC 2017
#13087: AlternativeLayoutRule breaks LambdaCase
-------------------------------------+-------------------------------------
Reporter: ohhellojoe | Owner:
Type: bug | Status: new
Priority: normal | Milestone:
Component: Compiler | Version: 8.0.1
(Parser) |
Resolution: | Keywords:
Operating System: Unknown/Multiple | Architecture:
| Unknown/Multiple
Type of failure: None/Unknown | Test Case:
Blocked By: | Blocking:
Related Tickets: | Differential Rev(s):
Wiki Page: |
-------------------------------------+-------------------------------------
Comment (by osa1):
You're looking for `-XNondecreasingIndentation`:
{{{
> t13087 cat test.hs
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NondecreasingIndentation #-}
isOne :: Int -> Bool
isOne = \case 1 -> True
_ -> False
foobar :: IO (Maybe ())
foobar = do putStrLn ""
return $ do
Just ()
main = return ()
> t13087 ghc test.hs
[1 of 1] Compiling Main ( test.hs, test.o )
Linking test ...
}}}
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/13087#comment:3>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list