summaryrefslogtreecommitdiff
path: root/testsuite/tests/rebindable/rebindable11.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/rebindable/rebindable11.hs')
-rw-r--r--testsuite/tests/rebindable/rebindable11.hs15
1 files changed, 0 insertions, 15 deletions
diff --git a/testsuite/tests/rebindable/rebindable11.hs b/testsuite/tests/rebindable/rebindable11.hs
deleted file mode 100644
index 13e1b2dd3d..0000000000
--- a/testsuite/tests/rebindable/rebindable11.hs
+++ /dev/null
@@ -1,15 +0,0 @@
-{-# LANGUAGE RebindableSyntax, MonadFailDesugaring #-}
-{-# OPTIONS_GHC -Wno-missing-monadfail-instances #-}
-
--- Test that rebindable clash warnings are not displayed. This program
--- should not generate anything on stderr at compile time.
-
-module Main where
-
-import Prelude
-
-catMaybes xs = do
- Just x <- xs
- return x
-
-main = return ()