blob: 8ce4733c134313ddfebe32d4c9c65592bf894fc4 [file]
#![feature(lang_items)]
#![feature(no_core)]
#![no_core]
macro_rules! assert {
($cond:expr $(,)?) => {{ /* compiler built-in */ }};
($cond:expr, $($arg:tt)+) => {{ /* compiler built-in */ }};
}
#[lang = "sized"]
trait Sized {}
const _: () = assert!(true);
const _: () = assert!(true);