buggood first issue
仓库指标
- 星标
- (1,602 个星标)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
given
newtype T = T { f :: B }
g :: A -> T
a :: A
The code
(g a).f
uses the record dot operator. HLint recognizes this as the compose operator and incorrectly warns of a redundant bracket. Removing the bracket breaks the code, of course.