summaryrefslogtreecommitdiff
path: root/testsuite/tests/printer/Test19850.hs
blob: 38dc156103719c814d6bc423f2c81b71a6892baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{-# LANGUAGE PatternSynonyms, ViewPatterns #-}
{-# LANGUAGE ImplicitParams #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE TypeApplications #-}

module Test19850 where

data Proxy (a :: k) = Proxy
data Con k (a :: k) = Con (Proxy a)

tyApp :: Con k a -> Proxy a
tyApp (Con @kx @ax (x :: Proxy ax)) = x :: Proxy (ax :: kx)