```haskell test :: Maybe Bool -> a test x = case x of Just y -> _ ``` case split on `y` here doesn't produce ```haskell test :: Maybe Bool -> a test x = case x of Just True -> _ Just False -> _ ``` but it should!