e379970056
Use a structured suggestion and tighten the span to just the identifier.
9 lines
157 B
Rust
9 lines
157 B
Rust
#![warn(unused)]
|
|
#![deny(warnings)]
|
|
|
|
const foo: isize = 3;
|
|
//~^ ERROR: should have an upper case name
|
|
//~^^ ERROR: constant item is never used
|
|
|
|
fn main() {}
|