Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-23543.rs
blob: 248bf77a7083881ab77b902a1c155324bc1dd342 [
file
] [
log
] [
blame
] [
edit
]
pub
trait
A
:
Copy
{}
struct
Foo
;
pub
trait
D
{
fn
f
<
T
>(
self
)
where T
<
Bogus
=
Foo
>:
A
;
//~^ ERROR associated item constraints are not allowed here [E0229]
}
fn
main
()
{}