You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
E.g. a file that consists of a single & generates the following errors in rustc & gcc respectively (other compilers match gcc):
column.rs:1:0: 1:1 error: expected item but found `&`
column.rs:1 &
^
column.c:1:1: error: expected identifier or ‘(’ before ‘&’ token
&
^
The column mismatch for the start of the expression (i.e. the 0 in 1:0:) means that Emacs' M-x compile jump-to-error mode lands one column before the expression in question.
The text was updated successfully, but these errors were encountered:
… r=llogiq
[`wildcard_imports`] Modules that contain `prelude` are also allowed
This commit fixesrust-lang#10846 by checking if the path segment contains the word "prelude", allowing us
`use module_prelude::*`.
changelog: [`wildcard_imports`]: Modules that contain `prelude` are also allowed
E.g. a file that consists of a single
&
generates the following errors in rustc & gcc respectively (other compilers match gcc):The column mismatch for the start of the expression (i.e. the
0
in1:0:
) means that Emacs'M-x compile
jump-to-error mode lands one column before the expression in question.The text was updated successfully, but these errors were encountered: