summaryrefslogtreecommitdiff
path: root/testsuite/tests/llvm/should_compile/T6158.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/llvm/should_compile/T6158.hs')
-rw-r--r--testsuite/tests/llvm/should_compile/T6158.hs11
1 files changed, 0 insertions, 11 deletions
diff --git a/testsuite/tests/llvm/should_compile/T6158.hs b/testsuite/tests/llvm/should_compile/T6158.hs
deleted file mode 100644
index 02f2d068c9..0000000000
--- a/testsuite/tests/llvm/should_compile/T6158.hs
+++ /dev/null
@@ -1,11 +0,0 @@
-module M where
-
-import Control.Monad.Primitive
-import qualified Data.Vector.Unboxed.Mutable as V
-import System.IO.Unsafe (unsafePerformIO)
-
-foo :: ()
-foo = unsafePerformIO $ do
- _ <- V.replicate 1 0.0 :: IO (V.MVector RealWorld Double)
- return ()
-