This is to clarify that the lint is checking for THIS_THING and not This.
This tries to warn about code like: ```rust match (0,0) { (0, aha) => { ... }, ... } ``` where `aha` is actually a static constant, not a binding.