Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
issues
/
issue-23543.rs
blob: 248bf77a7083881ab77b902a1c155324bc1dd342 [
file
]
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
()
{}