38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
22 lines
262 B
Rust
22 lines
262 B
Rust
#![warn(clippy::all)]
|
|
#![allow(clippy::blacklisted_name)]
|
|
#![allow(unused)]
|
|
|
|
enum Foo {
|
|
Bar,
|
|
Baz,
|
|
}
|
|
|
|
fn bar(foo: Foo) {
|
|
macro_rules! baz {
|
|
() => {
|
|
if let Foo::Bar = foo {}
|
|
};
|
|
}
|
|
|
|
baz!();
|
|
baz!();
|
|
}
|
|
|
|
fn main() {}
|