mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-16 13:30:56 +00:00
![]() Example --- ```rust static C<i32>: u32 = 0; ``` -> ```diff -error 8: missing type for `const` or `static` +error 8: `static` may not have generic parameters ``` --- ```rust const C = 0; ``` -> ```diff -error 7: missing type for `const` or `static` +error 7: missing type for `const` ``` --- ```rust static C = 0; ``` -> ```diff -error 8: missing type for `const` or `static` +error 8: missing type for `static` ``` |
||
---|---|---|
.. | ||
runner.rs |