summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/Recursive.hs
blob: 8b2ebc3fb4dc7a38a2816c6bc1052c257880863f (plain)
1
2
3
4
5
6
7
8
9
10
11
{-# LANGUAGE PartialTypeSignatures #-}
module Recursive where

orr :: a -> a -> a
orr = undefined

g :: _
g = f `orr` True

f :: _
f = g