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