mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +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() {
|
|
|
|
}
|