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

import SH_Overlap5_B

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