mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 03:40:36 +00:00
15 lines
158 B
Rust
15 lines
158 B
Rust
//@ check-pass
|
|
|
|
#![warn(clippy::rc_buffer)]
|
|
|
|
use std::rc::Rc;
|
|
|
|
struct String;
|
|
|
|
struct S {
|
|
// does not trigger lint
|
|
good1: Rc<String>,
|
|
}
|
|
|
|
fn main() {}
|