Sign in
rust
/
rust
/
dc9879cb3d3446c41b6d7d6813b7bfd17da1134f
/
.
/
tests
/
ui
/
generic-associated-types
/
issue-102335-gat.rs
blob: 0be6ee3930f1156fce370bf604a6b363625b637b [
file
] [
log
] [
blame
]
trait
T
{
type
A
:
S
<
C
<(),
i32
=
()>
=
()>;
//~^ ERROR associated item constraints are not allowed here
//~| ERROR associated item constraints are not allowed here
}
trait
Q
{}
trait
S
{
type
C
<
T
>:
Q
;
}
fn
main
()
{}