-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Closed
Labels
Description
Describe the issue
Types will sometimes not receive any highlighting.
Which language seems to have the issue?
Rust
Are you using highlight or highlightAuto?
highlight
Sample Code to Reproduce
let vec: Vec<isize> = Vec::new();
// ^^^ Not highlighted (The first `Vec` as well as `new` are highlighted)
if 100 > i32::MAX {}
// ^^^ Not highlightedhttps://jsfiddle.net/k7xe4vsz/1/
Expected behavior
All types are highlighted.
Additional context
I noticed this when trying to upgrade from v9.5.0 to v11.5.1. Prior to the upgrade, both lines were properly highlighted.