Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
non_lifetime_binders
/
missing-assoc-item.rs
blob: 50f0152e904f4706c1874bd043d834b46a9c1549 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
non_lifetime_binders
)]
//~^ WARN the feature `non_lifetime_binders` is incomplete
fn
f
()
where
for
<
B
>
B
::
Item
:
Send
,
//~^ ERROR ambiguous associated type
{
}
fn
main
()
{}