Skip to content

Commit 87454ce

Browse files
author
Philipp Schuster
committed
Fix DataFamilies export test.
1 parent 4ba8ac8 commit 87454ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/exports/DataFamilies.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{-# LANGUAGE TypeFamilies #-}
22
module DataFamilies (
3+
Vector,
34
ListLike(..),
45
Vector(..)) where
56

67
data family Vector a
78

89
class ListLike a where
910
type I a
10-
h :: a -> I a
11+
method1 :: a -> I a
1112

1213
newtype instance Vector () = U_Vector ()

0 commit comments

Comments
 (0)