```rust trait T { const A: &u8; } ``` (The second line starts with a *tab*, not with spaces!) This results in: <img width="551" alt="Screenshot 2021-08-12 at 16 48 04" src="https://user-images.githubusercontent.com/783247/129217926-0152223b-598c-4610-b04a-7d8441ef0d21.png"> It suggests to add a `'a ` after the `&`, but the green color is not applied to the `'a ` part, but instead to `A: &`, shifted a bit to the left. cc @estebank