summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/T13902.hs
blob: 73f34f2f6677a96d51b4b116318e85e050b60566 (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE TypeApplications #-}
module T13902 where

f :: a -> a
f x = x

g :: Int
g = f @Int 42 5