What's the feeling on having a FIXME pragma so that I can attach warnings to unfinished things?

{-# FIXME foo "Reasons here." #-}

I would use the WARNING pragma but that doesn't work within a module and only triggers on use. Compiler errors are the one thing I and everyone else pays attention to, it would be very handy to have more control over things GHC reports to the developer to aid development.

Ciao