Sign in
fuchsia
/
third_party
/
rust
/
75b2ae5ec50a3fb3cadd297b7d524935afa9faad
/
.
/
src
/
test
/
ui
/
const-generics
/
issues
/
issue-66906.rs
blob: a0b3f91220710ac003cd6aed43cfd61187dbd412 [
file
] [
log
] [
blame
]
// check-pass
pub
struct
Tuple
;
pub
trait
Trait
<
const
I
:
usize
>
{
type
Input
:
From
<<
Self
as
Trait
<
I
>>::
Input
>;
}
fn
main
()
{}