// Copyright 2017 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // Check that the code for issue #43355 can run without an ICE, please remove // this test when it becomes an hard error. pub trait Trait1 { type Output; } pub trait Trait2 {} impl Trait1 for T where T: Trait2 { type Output = (); } impl Trait1> for A { type Output = i32; } pub struct A; fn f>>() { println!("k: {}", ::std::mem::size_of::<>>::Output>()); } pub fn g>>() { f::(); } fn main() {}