Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
suggest-assoc-const.fixed
blob: de7f2cbaaba5e5bda156b96ff7ef62931b17eb7f [
file
] [
log
] [
blame
] [
edit
]
// Issue: 101797, Suggest associated const for incorrect use of let in traits
//@ run-rustfix
#![allow(dead_code)]
trait
Trait
{
const
_X
:
i32
;
//~^ ERROR non-item in item list
}
fn main
()
{
}