rust/tests/ui/crashes/inherent_impl.rs

27 lines
415 B
Rust
Raw Normal View History

2019-09-28 03:46:55 +02:00
#![deny(clippy::multiple_inherent_impl)]
/// Test for https://github.com/rust-lang/rust-clippy/issues/4578
macro_rules! impl_foo {
($struct:ident) => {
impl $struct {
fn foo() {}
}
};
}
macro_rules! impl_bar {
($struct:ident) => {
impl $struct {
fn bar() {}
}
};
}
struct MyStruct;
impl_foo!(MyStruct);
impl_bar!(MyStruct);
fn main() {}