summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/suggest-assoc-const.fixed
blob: 259f37b23a5845bc78580a65f7c33e2297d883ac (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 {
    const _X: i32;
    //~^ ERROR non-item in item list
}

fn main() {

}