Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-18809.rs
blob: d3ef6abc8bdc883dfd38960f3e4d6d1f37cca5a1 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
trait
Tup
{
type
T0
;
type
T1
;
}
impl
Tup
for
isize
{
type
T0
=
f32
;
type
T1
=
();
}
fn
main
()
{}