mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 02:38:28 +00:00
dcd1a16dd0
Adds additional test to check for `swap` suggestion when `no_std` is present
15 lines
238 B
Rust
15 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;
|
|
}
|