diff options
Diffstat (limited to 'testsuite/tests/ghci/scripts/T19688.hs')
-rw-r--r-- | testsuite/tests/ghci/scripts/T19688.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/tests/ghci/scripts/T19688.hs b/testsuite/tests/ghci/scripts/T19688.hs new file mode 100644 index 0000000000..e43de2f9f9 --- /dev/null +++ b/testsuite/tests/ghci/scripts/T19688.hs @@ -0,0 +1,5 @@ +{-# LANGUAGE TypeFamilies #-} +module T19688 where + +data family D (a :: k) +data instance D Int = DInt |