rust-clippy/tests/ui/crate_level_checks/no_std_swap.rs

16 lines
238 B
Rust
Raw Normal View History

#![no_std]
#![feature(lang_items, start, libc)]
#![crate_type = "lib"]
use core::panic::PanicInfo;
#[warn(clippy::all)]
fn main() {
// TODO: do somethjing with swap
let mut a = 42;
let mut b = 1337;
a = b;
b = a;
}