rust-clippy/tests/ui/crate_level_checks/no_std_swap.rs
2021-12-01 09:43:35 +00:00

14 lines
201 B
Rust

#![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;
a = b;
b = a;
}