summaryrefslogtreecommitdiff
path: root/testsuite/tests/safeHaskell/overlapping/SH_Overlap4_A.hs
blob: bb1625e2226245d130e873e36f87787ee985351d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# LANGUAGE Safe #-}
{-# LANGUAGE FlexibleInstances #-}
module SH_Overlap4_A (
    C(..)
  ) where

import SH_Overlap4_B

instance
  {-# OVERLAPS #-}
  C [Int] where
    f _ = "[Int]"