rust/tests/ui/crate_level_checks/no_std_swap.fixed

14 lines
216 B
Rust
Raw Normal View History

2023-07-27 06:40:22 -05:00
#![no_std]
#![feature(lang_items, start, libc)]
#![crate_type = "lib"]
use core::panic::PanicInfo;
#[warn(clippy::all)]
fn main() {
let mut a = 42;
let mut b = 1337;
core::mem::swap(&mut a, &mut b);
}