Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
trait Tup {
type T0;
type T1;
}
impl Tup for isize {
type T0 = f32;
type T1 = ();
fn main() {}