We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
<<
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:
fn main
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?
The text was updated successfully, but these errors were encountered:
Looks like an upstream issue and someone has already proposed a PR: ajaxorg/ace#5572.
Sorry, something went wrong.
No branches or pull requests
Consider this code:
On the playground,
fn main
does not get syntax highlighting: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?The text was updated successfully, but these errors were encountered: