mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
54 lines
684 B
Rust
54 lines
684 B
Rust
#![feature(no_core, lang_items)]
|
|
#![no_core]
|
|
|
|
#[lang="sized"]
|
|
trait Sized {}
|
|
|
|
#[lang="copy"]
|
|
trait Copy {}
|
|
|
|
#[lang="freeze"]
|
|
trait Freeze {}
|
|
|
|
#[lang="mul"]
|
|
trait Mul<RHS = Self> {
|
|
type Output;
|
|
|
|
#[must_use]
|
|
fn mul(self, rhs: RHS) -> Self::Output;
|
|
}
|
|
|
|
impl Mul for u8 {
|
|
type Output = u8;
|
|
|
|
fn mul(self, rhs: u8) -> u8 {
|
|
self * rhs
|
|
}
|
|
}
|
|
|
|
#[lang="panic"]
|
|
fn panic(_expr_file_line_col: &(&'static str, &'static str, u32, u32)) -> ! {
|
|
loop {}
|
|
}
|
|
|
|
fn abc(a: u8) -> u8 {
|
|
a * 2
|
|
}
|
|
|
|
fn bcd(b: bool, a: u8) -> u8 {
|
|
if b {
|
|
a * 2
|
|
} else {
|
|
a * 3
|
|
}
|
|
}
|
|
|
|
fn call() {
|
|
abc(42);
|
|
}
|
|
|
|
fn indirect_call() {
|
|
let f: fn() = call;
|
|
f();
|
|
}
|