mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
a8f68240d3
This commit adds test for a `extra_unused_lifetimes` false positive from derive (#9014). The fix for the FP is introduced in #9037.
88 lines
2 KiB
Rust
88 lines
2 KiB
Rust
// compile-flags: --emit=link
|
|
// no-prefer-dynamic
|
|
|
|
#![crate_type = "proc-macro"]
|
|
#![feature(repr128, proc_macro_quote)]
|
|
#![allow(incomplete_features)]
|
|
#![allow(clippy::field_reassign_with_default)]
|
|
#![allow(clippy::eq_op)]
|
|
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::{quote, TokenStream};
|
|
|
|
#[proc_macro_derive(DeriveSomething)]
|
|
pub fn derive(_: TokenStream) -> TokenStream {
|
|
// Should not trigger `used_underscore_binding`
|
|
let _inside_derive = 1;
|
|
assert_eq!(_inside_derive, _inside_derive);
|
|
|
|
let output = quote! {
|
|
// Should not trigger `useless_attribute`
|
|
#[allow(dead_code)]
|
|
extern crate rustc_middle;
|
|
};
|
|
output
|
|
}
|
|
|
|
#[proc_macro_derive(FieldReassignWithDefault)]
|
|
pub fn derive_foo(_input: TokenStream) -> TokenStream {
|
|
quote! {
|
|
#[derive(Default)]
|
|
struct A {
|
|
pub i: i32,
|
|
pub j: i64,
|
|
}
|
|
#[automatically_derived]
|
|
fn lint() {
|
|
let mut a: A = Default::default();
|
|
a.i = 42;
|
|
a;
|
|
}
|
|
}
|
|
}
|
|
|
|
#[proc_macro_derive(StructAUseSelf)]
|
|
pub fn derive_use_self(_input: TokenStream) -> proc_macro::TokenStream {
|
|
quote! {
|
|
struct A;
|
|
impl A {
|
|
fn new() -> A {
|
|
A
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[proc_macro_derive(ClippyMiniMacroTest)]
|
|
pub fn mini_macro(_: TokenStream) -> TokenStream {
|
|
quote!(
|
|
#[allow(unused)]
|
|
fn needless_take_by_value(s: String) {
|
|
println!("{}", s.len());
|
|
}
|
|
#[allow(unused)]
|
|
fn needless_loop(items: &[u8]) {
|
|
for i in 0..items.len() {
|
|
println!("{}", items[i]);
|
|
}
|
|
}
|
|
fn line_wrapper() {
|
|
println!("{}", line!());
|
|
}
|
|
)
|
|
}
|
|
|
|
#[proc_macro_derive(ExtraLifetimeDerive)]
|
|
#[allow(unused)]
|
|
pub fn extra_lifetime(_input: TokenStream) -> TokenStream {
|
|
quote!(
|
|
pub struct ExtraLifetime;
|
|
|
|
impl<'b> ExtraLifetime {
|
|
pub fn something<'c>() -> Self {
|
|
Self
|
|
}
|
|
}
|
|
)
|
|
}
|