diff options
Diffstat (limited to 'testsuite/tests/driver/Shared001.hs')
-rw-r--r-- | testsuite/tests/driver/Shared001.hs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/testsuite/tests/driver/Shared001.hs b/testsuite/tests/driver/Shared001.hs index 4f6a3d9c3d..4d827b85ba 100644 --- a/testsuite/tests/driver/Shared001.hs +++ b/testsuite/tests/driver/Shared001.hs @@ -1,9 +1,9 @@ -{-# LANGUAGE ForeignFunctionInterface #-}
-module Shared001 where
-
--- Test for building DLLs with ghc -shared, see #2745
-
-f :: Int -> Int
-f x = x+1
-
-foreign export ccall f :: Int -> Int
+{-# LANGUAGE ForeignFunctionInterface #-} +module Shared001 where + +-- Test for building DLLs with ghc -shared, see #2745 + +f :: Int -> Int +f x = x+1 + +foreign export ccall f :: Int -> Int |