diff options
Diffstat (limited to 'testsuite/tests/rebindable/rebindable12.hs')
-rw-r--r-- | testsuite/tests/rebindable/rebindable12.hs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/testsuite/tests/rebindable/rebindable12.hs b/testsuite/tests/rebindable/rebindable12.hs deleted file mode 100644 index fd2e1c7bb3..0000000000 --- a/testsuite/tests/rebindable/rebindable12.hs +++ /dev/null @@ -1,14 +0,0 @@ -{-# LANGUAGE RebindableSyntax, MonadFailDesugaring #-} -{-# OPTIONS_GHC -Wmissing-monadfail-instances #-} - --- Test that rebindable clash warnings are displayed. - -module Main where - -import Prelude - -catMaybes xs = do - Just x <- xs - return x - -main = return () |