// build-pass (FIXME(62277): could be check-pass?)
trait Tup {
type T0;
type T1;
}
impl Tup for isize {
type T0 = f32;
type T1 = ();
fn main() {}