mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-11 04:38:43 +00:00
16 lines
238 B
Rust
16 lines
238 B
Rust
|
#![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;
|
||
|
}
|