blob: 4179862cad38615eebb42c73a8b7afae85c5ce01 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# LANGUAGE PartialTypeSignatures #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeInType #-}
{-# OPTIONS_GHC -Wno-partial-type-signatures #-}
module Bug where
import Data.Proxy
f2 :: forall a (x :: a). Proxy (x :: _)
f2 = Proxy
|