blob: 1ebaf3b2817862a1c790dc48568197685efc2439 [file]
//! Regression test for https://github.com/rust-lang/rust/issues/18809
//@ check-pass
trait Tup {
type T0;
type T1;
}
impl Tup for isize {
type T0 = f32;
type T1 = ();
}
fn main() {}