rust/tests/ui/crashes/ice-3462.rs
Eduardo Broto 6b59675449 Remove run-pass annotations from crash tests
It does not seem to be necessary
2020-09-25 15:19:36 +02:00

23 lines
329 B
Rust

#![warn(clippy::all)]
#![allow(clippy::blacklisted_name)]
#![allow(unused)]
/// Test for https://github.com/rust-lang/rust-clippy/issues/3462
enum Foo {
Bar,
Baz,
}
fn bar(foo: Foo) {
macro_rules! baz {
() => {
if let Foo::Bar = foo {}
};
}
baz!();
baz!();
}
fn main() {}