blob: 41ce21a490768db25428a46c9448933dc9cb1048 [file] [log] [blame]
#![feature(lang_items)]
#[lang = "sized"]
pub trait Sized {}
pub enum Either<L, R> {
Left(L),
Right(R),
}
pub struct Wrap<T>(T);
pub fn foo_wrap() -> Either<(), Wrap<u8>> {
Either::Left(())
}