blob: c7be712ec076e2efe894d8c3b7c9758b20fb0fbb [file] [log] [blame]
// 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() {
}