summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/NamedTyVar.hs
blob: c86a2ec72e564dce794c53704be8b49c4daef70d (plain)
1
2
3
4
5
{-# LANGUAGE PartialTypeSignatures, NamedWildCards #-}
module NamedTyVar where

foo :: (_a, b) -> (a, _b)
foo (x, y) = (x, y)