summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/WarningWildcardInstantiations.hs
blob: 884ced6d8f39f6cd5bd77cd1b8e391946f170125 (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE PartialTypeSignatures, NamedWildCards, ScopedTypeVariables, RankNTypes #-}
module WildcardInstantiations where


foo :: (Show _a, _) => _a -> _
foo x = show (succ x)

bar :: _ -> _ -> _
bar x y = y x