blob: cdb713f118a03027679b2bab0f294d2e8b5456f4 (
plain)
1
2
3
4
5
6
7
8
9
|
{-# LANGUAGE ImplicitParams, TypeInType, ExplicitForAll #-}
module T11405 where
import GHC.Exts
import GHC.Stack
x :: forall (v :: RuntimeRep) (a :: TYPE v). (?callStack :: CallStack) => a
x = undefined
|