summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/rc_buffer_redefined_string.rs
blob: 5d31a848cf72c0166b889f4ffe83b00a14cd36b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![warn(clippy::rc_buffer)]

use std::rc::Rc;

struct String;

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

fn main() {}