1 {-# LANGUAGE ImplicitParams #-}
5 hmm
= let ?a
= True in ?a
&& ?b
7 {- The error message should say
9 Could not deduce (?b::Bool)
10 arising from a use of implicit parameter `?b'
11 from the context (?a::Bool)
13 That is, the context should be (?a :: Bool) not (?a :: t0).