mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
14 lines
196 B
Rust
14 lines
196 B
Rust
#![allow(clippy::unit_arg, clippy::no_effect)]
|
|
|
|
const fn v(_: ()) {}
|
|
|
|
fn main() {
|
|
if true {
|
|
v({
|
|
[0; 1 + 1];
|
|
});
|
|
Some(())
|
|
} else {
|
|
None
|
|
};
|
|
}
|