Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
generic-associated-types
/
issue-67424.rs
blob: 24cce228ed37a86063853e9ae446a849ac847ce0 [
file
] [
log
] [
blame
]
//@ check-pass
// Fixed by #67160
trait
Trait1
{
type
A
;
}
trait
Trait2
{
type
Type1
<
B
>:
Trait1
<
A
=
B
>;
}
fn
main
()
{}