summaryrefslogtreecommitdiff
path: root/testsuite/tests/driver/multipleHomeUnits/instance-vis/p2/P.hs
blob: 155d965f673fa2a5dafdc4df11b0b586b34f9c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
-- The same as the module in p1, but doesn't contain an instance
module P where

class Test x where
  test :: x -> x

data P = P

instance Test P where
  test = id