EPA: Comment between module and where should be in header comments
For the source
module ModuleWhere {- comment -} where
foo = 's'
The comment should be in the HsModule
header comments.
Instead it is attached to foo = 's'
.
It attached correctly if we put a blank line before foo = 's'
.