Sign in
◑
Theme
rust
/
rust
/
8662be8340e5e2bc06fe16b7df0a7d02ebdf5e64
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
rc_buffer_redefined_string.rs
blob: 49a8ba3e2efbbc9a613fa8773ed3fade29ea6221 [
file
]
//@ check-pass
#![
warn
(
clippy
::
rc_buffer
)]
use
std
::
rc
::
Rc
;
struct
String
;
struct
S
{
// does not trigger lint
good1
:
Rc
<
String
>,
}
fn
main
()
{}