Sign in
android
/
toolchain
/
rustc
/
bcfff4e50dda5837a362e7ef749affe38767d9f2
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
rc_buffer_redefined_string.rs
blob: 5d31a848cf72c0166b889f4ffe83b00a14cd36b1 [
file
]
#![
warn
(
clippy
::
rc_buffer
)]
use
std
::
rc
::
Rc
;
struct
String
;
struct
S
{
// does not trigger lint
good1
:
Rc
<
String
>,
}
fn
main
()
{}