mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
13 lines
142 B
Rust
13 lines
142 B
Rust
|
#![warn(clippy::rc_buffer)]
|
||
|
|
||
|
use std::rc::Rc;
|
||
|
|
||
|
struct String;
|
||
|
|
||
|
struct S {
|
||
|
// does not trigger lint
|
||
|
good1: Rc<String>,
|
||
|
}
|
||
|
|
||
|
fn main() {}
|