summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/suggest-assoc-const.rs
blob: c7be712ec076e2efe894d8c3b7c9758b20fb0fbb (plain)
1
2
3
4
5
6
7
8
9
10
// 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() {

}