mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 19:40:02 +00:00
11 lines
179 B
Rust
11 lines
179 B
Rust
// Issue: 101797, Suggest associated const for incorrect use of let in traits
|
|
// run-rustfix
|
|
trait Trait {
|
|
let _X: i32;
|
|
//~^ ERROR non-item in item list
|
|
}
|
|
|
|
fn main() {
|
|
|
|
}
|