mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-23 12:23:22 +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() {
|
||
|
|
||
|
}
|