-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix missing syntax highlighting for &raw const
/ &raw mut
in all files.
#19400
Fix missing syntax highlighting for &raw const
/ &raw mut
in all files.
#19400
Conversation
@Veykril, with our current test fixture infrastructure, we can't write tests for non-crate files. The test expects the error: "missing default crate root, specify a main.rs or lib.rs." If I want to test something like this, it won't work: check_highlighting(
r#"
//- /foo.rs
fn main() {
let x = &raw mut 5;
}
"#,
expect_file!["./test_data/highlight_issue_19357.html"],
false,
); Should we make changes in the same PR to support this test? |
I think check_highlighting(
r#"
//- /foo.rs
fn main() {
let x = &raw mut 5;
}
//- /main.rs
"#, might work? |
…ate modules which are not part of any crate
cefbe6b
to
cfac2c3
Compare
works thanks... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
closes: #19357