blob: 454227c14dec7763fd285d0449d88816da83d251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{-# OPTIONS -fwarn-unused-binds #-}
-- Test reports of unused bindings
module ShouldCompile( t ) where
f x = f x -- Unused
g x = h x -- Unused
h x = g x
t x = t x -- Used by export list
|