mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
13 lines
216 B
Rust
13 lines
216 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;
|
|
|
|
core::mem::swap(&mut a, &mut b);
|
|
}
|