diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2011-09-02 17:45:18 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2011-09-02 17:45:18 +0100 |
commit | 06127a28701e12655cd794ec61a70f5389ad23a4 (patch) | |
tree | 5c37400f86f0bcdd0a233d42359f5cd512c17875 /testsuite/tests/rename | |
parent | b4b59ca4d2057ee304b6cdbb0a70015689835be6 (diff) | |
download | haskell-06127a28701e12655cd794ec61a70f5389ad23a4.tar.gz |
Change test, now that imported data families don't get implicitly exported
Diffstat (limited to 'testsuite/tests/rename')
-rw-r--r-- | testsuite/tests/rename/should_compile/T5306a.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/rename/should_compile/T5306a.hs b/testsuite/tests/rename/should_compile/T5306a.hs index 4aee0f8340..783131b11f 100644 --- a/testsuite/tests/rename/should_compile/T5306a.hs +++ b/testsuite/tests/rename/should_compile/T5306a.hs @@ -1,5 +1,5 @@ {-# LANGUAGE TypeFamilies #-}
-module T5306a where
+module T5306a( F(..) ) where
import T5306b
data instance F Bool = FBool
|