about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/rc_buffer_redefined_string.rs
blob: 49a8ba3e2efbbc9a613fa8773ed3fade29ea6221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ check-pass

#![warn(clippy::rc_buffer)]

use std::rc::Rc;

struct String;

struct S {
    // does not trigger lint
    good1: Rc<String>,
}

fn main() {}