rust-clippy/tests/ui/crashes/ice-3462.rs

24 lines
376 B
Rust
Raw Normal View History

2019-01-03 10:08:05 +00:00
#![warn(clippy::all)]
2023-06-10 11:43:30 +00:00
#![allow(clippy::disallowed_names, clippy::equatable_if_let, clippy::needless_if)]
2019-01-03 10:08:05 +00:00
#![allow(unused)]
/// Test for https://github.com/rust-lang/rust-clippy/issues/3462
2019-01-03 10:08:05 +00:00
enum Foo {
Bar,
Baz,
}
fn bar(foo: Foo) {
macro_rules! baz {
() => {
if let Foo::Bar = foo {}
};
}
baz!();
baz!();
}
fn main() {}