summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/rc_buffer.fixed
blob: 8910c01b1fcf9ebdee2d0eff39a0e864466172f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// run-rustfix
#![warn(clippy::rc_buffer)]
#![allow(dead_code, unused_imports)]

use std::cell::RefCell;
use std::ffi::OsString;
use std::path::PathBuf;
use std::rc::Rc;

struct S {
    // triggers lint
    bad1: Rc<str>,
    bad2: Rc<std::path::Path>,
    bad3: Rc<[u8]>,
    bad4: Rc<std::ffi::OsStr>,
    // does not trigger lint
    good1: Rc<RefCell<String>>,
}

// triggers lint
fn func_bad1(_: Rc<str>) {}
fn func_bad2(_: Rc<std::path::Path>) {}
fn func_bad3(_: Rc<[u8]>) {}
fn func_bad4(_: Rc<std::ffi::OsStr>) {}
// does not trigger lint
fn func_good1(_: Rc<RefCell<String>>) {}

fn main() {}