rust-playground icon indicating copy to clipboard operation
rust-playground copied to clipboard

Syntax highlighting is thrown off by `<<`

Open RalfJung opened this issue 1 year ago • 1 comments

Consider this code:

pub fn f() {
    g::<u32>();
}
pub fn g<T>() -> std::mem::MaybeUninit<[T; 1 << 2]> {
    std::mem::MaybeUninit::uninit()
}

fn main() {
    f();
}

On the playground, fn main does not get syntax highlighting:

image

Seems like the << in a type is throwing it off and then it can't parse the rest of the file any more, or so?

RalfJung avatar May 28 '24 12:05 RalfJung