blob: cdc8b2f8571bfb03ccae3918fe3c8bf1541c8d5a [file] [log] [blame]
#![feature(lang_items)]
#[lang = "sized"]
trait Sized {}
#[lang = "fn_once"]
pub trait FnOnce<Args> {
extern "rust-call" fn call_once(self, args: Args) -> Self::Output;
type Output;
}