Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
issues
/
issue-23543.rs
blob: 248bf77a7083881ab77b902a1c155324bc1dd342 [
file
] [
log
] [
blame
]
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
()
{}