summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_fail/WildcardInInstanceHead.hs
blob: 86e5fae347e2d08490ebd0e6f847e45a464bb726 (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE PartialTypeSignatures #-}
module WildcardInInstanceHead where

class Foo k where
  bar :: k

instance Foo _ where
  bar = 3