ScintillaOrg / lexilla

A library of language lexers for use with Scintilla
https://www.scintilla.org/Lexilla.html
Other
163 stars 59 forks source link

Rust: raw identifiers are marked as errors. #239

Closed Ekopalypse closed 2 months ago

Ekopalypse commented 2 months ago
fn main() {
    let r#true = false;
    println!("{}", r#true);
}

image

nyamatongwe commented 2 months ago

Explanation of raw identifiers: https://doc.rust-lang.org/rust-by-example/compatibility/raw_identifiers.html.