blob: b7dae27bf5a6fb7211196df5f7b3be1e37bf624e [file] [log] [blame]
#![feature(lang_items)]
#[lang = "sized"]
pub trait Sized {}
pub struct A<T>(T);
pub struct B<T>(T);
pub fn foo(_: A<B<i32>>) {}