Sign in
rust
/
rust
/
dc9879cb3d3446c41b6d7d6813b7bfd17da1134f
/
.
/
tests
/
ui
/
generic-associated-types
/
anonymize-bound-vars.rs
blob: 37267329ac4de91cb7045e58b72c06d27106821f [
file
] [
log
] [
blame
]
//@ check-pass
//
// regression test for #98702
trait
Foo
{
type
Assoc
<
T
>;
}
impl
Foo
for
()
{
type
Assoc
<
T
>
=
[
T
;
2
*
2
];
}
fn
main
()
{}