summaryrefslogtreecommitdiff
path: root/testsuite/tests/hiefile/should_compile/ScopesBug.hs
blob: 268216ad6e9fe6add37cb6ea4fd1ff823034df3c (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 ScopesBug 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)