blob: caf5c729068cfe4716b32a9aae64ab913cc4495c (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# OPTIONS_GHC -fno-warn-redundant-constraints #-}
-- !!! hiding class members (but not class.)
module M where
import Prelude hiding ( (<), (>))
x :: Ord a => a -> a
x = undefined
|