Skip to content
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

ERROR synthetic syntax warning on any interaction with the editor #19456

Open
Paladynee opened this issue Mar 26, 2025 · 6 comments · Fixed by #19460
Open

ERROR synthetic syntax warning on any interaction with the editor #19456

Paladynee opened this issue Mar 26, 2025 · 6 comments · Fixed by #19460
Labels
Broken Window Bugs / technical debt to be addressed immediately C-bug Category: bug

Comments

@Paladynee
Copy link

Paladynee commented Mar 26, 2025

rust-analyzer version: rust-analyzer version: 0.3.2353-standalone (37acea8 2025-03-23)

rustc version: rustc 1.87.0-nightly (f8c27dfe1 2025-03-24)

editor or extension: VSCode

relevant settings: i dont know

code snippet to reproduce:
minimal:

fn minimal_case() {
    let anything_display = 1;
    format_args!("{}", anything_display);
}

other examples:

fn higher_macros() {
    panic!("panic uses format args{}", "");
}

fn real_code() {
    let vec: Vec<u8> = vec![];
    let formatted = format!("real {} code that can happen", vec.len());
    println!("very {} in real life ", formatted);
}

fn main() {
    minimal_case();
    higher_macros();
    real_code();
}

any macro that calls format_args with an argument that can be formatted, will cause this "warning". the warning is in the OUTPUT section of the editor, under Rust Analyzer Language Server from the dropdown:

...
2025-03-26T18:36:02.853090122+03:00 ERROR synthetic syntax
2025-03-26T18:36:02.853171069+03:00 ERROR synthetic syntax
2025-03-26T18:36:02.853212834+03:00 ERROR synthetic syntax
2025-03-26T18:36:02.853218002+03:00 ERROR synthetic syntax
2025-03-26T18:36:16.090820077+03:00 ERROR synthetic syntax
2025-03-26T18:36:16.09091122+03:00 ERROR synthetic syntax
2025-03-26T18:36:16.090965557+03:00 ERROR synthetic syntax
2025-03-26T18:36:16.090972821+03:00 ERROR synthetic syntax
2025-03-26T18:38:08.535456768+03:00 ERROR synthetic syntax
2025-03-26T18:38:08.535573823+03:00 ERROR synthetic syntax
2025-03-26T18:38:08.53561922+03:00 ERROR synthetic syntax
2025-03-26T18:38:08.535625855+03:00 ERROR synthetic syntax
...

It will produce as many ERROR synthetic syntax messages as there are calls to format_args! in the source code (whether direct, or indirect, as shown above).

Image

I am pretty much sure this can't be reproduced, otherwise it would be recognized immediately. This doesn't cause any issue per se, but it is still annoying to not be able to see Rust Analyzer Language Server output because of this error.

It is also a very cryptic error message with no payload attached. Why is it like this?

@Paladynee Paladynee added the C-bug Category: bug label Mar 26, 2025
@lnicola
Copy link
Member

lnicola commented Mar 26, 2025

I'm not able to reproduce this, but I think those error come up from time to time. Just to be sure, do you get the docs when hovering on panic_args!?

@lnicola
Copy link
Member

lnicola commented Mar 26, 2025

Ah, never mind, I can reproduce it on nightly.

@Veykril
Copy link
Member

Veykril commented Mar 26, 2025

That message means we tried to emit a diagnostic for some desugared thing, something we shouldn't be doing. I can confirm that my logs are also apparently spammed with this message so we either changed some desugaring recently or when a specific diagnostic gets reported. Though I don't see any such relevant changes

@lnicola
Copy link
Member

lnicola commented Mar 26, 2025

nightly-2025-03-22 works fine, nightly-2025-03-23 fails.

@Veykril
Copy link
Member

Veykril commented Mar 26, 2025

Ah right, rust-lang/rust#136932 got merged so we need to adjust our lowering

@Veykril Veykril added the Broken Window Bugs / technical debt to be addressed immediately label Mar 26, 2025
@Veykril
Copy link
Member

Veykril commented Mar 28, 2025

Still seems to be an issue

@Veykril Veykril reopened this Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Broken Window Bugs / technical debt to be addressed immediately C-bug Category: bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants