diff options
Diffstat (limited to 'html-test/src/Bug466.hs')
-rw-r--r-- | html-test/src/Bug466.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/html-test/src/Bug466.hs b/html-test/src/Bug466.hs new file mode 100644 index 00000000..ec7cde2c --- /dev/null +++ b/html-test/src/Bug466.hs @@ -0,0 +1,9 @@ +{-# LANGUAGE DataKinds, TypeFamilies, StarIsType #-} +module Bug466 where + +class Cl a where + type Fam a :: [*] + +data X = X +instance Cl X where + type Fam X = '[Char] |