rust/tests/ui/lint/noop-method-call.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.9 KiB
Rust
Raw Normal View History

// check-pass
2023-07-23 04:56:56 -05:00
// run-rustfix
#![feature(rustc_attrs)]
#![allow(unused)]
2021-02-16 15:39:05 -06:00
use std::borrow::Borrow;
use std::ops::Deref;
struct PlainType<T>(T);
#[derive(Clone)]
2021-02-16 08:12:19 -06:00
struct CloneType<T>(T);
2023-07-23 04:56:56 -05:00
fn check(mut encoded: &[u8]) {
let _ = &mut encoded.clone();
//~^ WARN call to `.clone()` on a reference in this situation does nothing
let _ = &encoded.clone();
//~^ WARN call to `.clone()` on a reference in this situation does nothing
}
fn main() {
2021-02-16 15:39:05 -06:00
let non_clone_type_ref = &PlainType(1u32);
let non_clone_type_ref_clone: &PlainType<u32> = non_clone_type_ref.clone();
2023-07-23 04:56:56 -05:00
//~^ WARN call to `.clone()` on a reference in this situation does nothing
2021-02-16 08:12:19 -06:00
let clone_type_ref = &CloneType(1u32);
let clone_type_ref_clone: CloneType<u32> = clone_type_ref.clone();
2021-01-12 20:37:32 -06:00
2021-02-16 15:39:05 -06:00
let non_deref_type = &PlainType(1u32);
let non_deref_type_deref: &PlainType<u32> = non_deref_type.deref();
2023-07-23 04:56:56 -05:00
//~^ WARN call to `.deref()` on a reference in this situation does nothing
2021-02-16 15:39:05 -06:00
let non_borrow_type = &PlainType(1u32);
let non_borrow_type_borrow: &PlainType<u32> = non_borrow_type.borrow();
2023-07-23 04:56:56 -05:00
//~^ WARN call to `.borrow()` on a reference in this situation does nothing
2021-02-16 15:39:05 -06:00
// Borrowing a &&T does not warn since it has collapsed the double reference
let non_borrow_type = &&PlainType(1u32);
let non_borrow_type_borrow: &PlainType<u32> = non_borrow_type.borrow();
}
2021-02-16 15:39:05 -06:00
fn generic<T>(non_clone_type: &PlainType<T>) {
2021-02-16 08:12:19 -06:00
non_clone_type.clone();
2023-07-23 04:56:56 -05:00
//~^ WARN call to `.clone()` on a reference in this situation does nothing
}
2021-02-16 15:39:05 -06:00
fn non_generic(non_clone_type: &PlainType<u32>) {
2021-02-16 08:12:19 -06:00
non_clone_type.clone();
2023-07-23 04:56:56 -05:00
//~^ WARN call to `.clone()` on a reference in this situation does nothing
}
struct DiagnosticClone;
impl Clone for DiagnosticClone {
#[rustc_diagnostic_item = "other_clone"]
fn clone(&self) -> Self {
DiagnosticClone
}
}
fn with_other_diagnostic_item(x: DiagnosticClone) {
x.clone();
}