summaryrefslogtreecommitdiff
path: root/testsuite/tests/deSugar/should_run/T8952.hs
blob: 42eeb250a9baea7412b2b1bfee2d7a9b43233d3e (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE BangPatterns #-}

module Main where

main = print (case Nothing of
                  !(~(Just x)) -> "ok"
                  Nothing   -> "bad")