compiler/GHC/Core/Map/Expr.hs:110:1: warning: [-Wmissing-methods]
• No explicit associated type or default declaration for ‘$wf'Key’
• In the instance declaration for ‘TrieMap CoreMap’
|
110 | instance TrieMap CoreMap where
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
This is because we build those axioms after the validity check. A better way would be to do it before the validity check.
You may see warning like
This is because we build those axioms after the validity check. A better way would be to do it before the validity check.