a586f52a0f
This should give us more UI coverage for free. It also removes the `run-pass` suite, so we now only have the `ui` suite.
12 lines
176 B
Rust
12 lines
176 B
Rust
#[macro_use]
|
|
extern crate clippy_mini_macro_test;
|
|
|
|
#[deny(warnings)]
|
|
fn main() {
|
|
let x = Foo;
|
|
println!("{:?}", x);
|
|
}
|
|
|
|
#[derive(ClippyMiniMacroTest, Debug)]
|
|
struct Foo;
|