Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
issues
/
issue-66906.rs
blob: 8836da84a383953dfdfac97f717f0aa857a3d5c0 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
pub
struct
Tuple
;
pub
trait
Trait
<
const
I
:
usize
>
{
type
Input
:
From
<<
Self
as
Trait
<
I
>>::
Input
>;
}
fn
main
()
{}