blob: 45f50efdccbdb6fcff907958d7d9654d40948abc [file] [log] [blame]
//@ run-pass
trait Tr { type T; }
impl Tr for u8 { type T=(); }
struct S<I: Tr>(#[allow(dead_code)] I::T);
fn foo<I: Tr>(i: I::T) {
S::<I>(i);
}
fn main() {
foo::<u8>(());
}