Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
associated-consts
/
infer-placeholder-in-non-suggestable-pos.rs
blob: 40896c32e1113a3e37c786d0706d5b286d2ef565 [
file
] [
log
] [
blame
] [
edit
]
trait
Trait
{
const
ASSOC
:
i32
;
}
impl
Trait
for
()
{
const
ASSOC
:
&
dyn
Fn
(
_
)
=
1i32
;
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for associated constants
}
fn
main
()
{}