mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
20 lines
292 B
Rust
20 lines
292 B
Rust
|
#[deny(warnings)]
|
||
|
fn cfg_return() -> i32 {
|
||
|
#[cfg(unix)] return 1;
|
||
|
#[cfg(not(unix))] return 2;
|
||
|
}
|
||
|
|
||
|
#[deny(warnings)]
|
||
|
fn cfg_let_and_return() -> i32 {
|
||
|
#[cfg(unix)]
|
||
|
let x = 1;
|
||
|
#[cfg(not(unix))]
|
||
|
let x = 2;
|
||
|
x
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
cfg_return();
|
||
|
cfg_let_and_return();
|
||
|
}
|