mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
21 lines
268 B
Rust
21 lines
268 B
Rust
#![warn(clippy::use_self)]
|
|
|
|
#[macro_use]
|
|
#[path = "auxiliary/use_self_macro.rs"]
|
|
mod use_self_macro;
|
|
|
|
struct Foo {
|
|
a: u32,
|
|
}
|
|
|
|
use_self! {
|
|
impl Foo {
|
|
fn func(&self) {
|
|
[fields(
|
|
a
|
|
)]
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|