2021-07-15 08:44:10 +00:00
|
|
|
#![warn(clippy::rc_mutex)]
|
2021-09-08 14:31:47 +00:00
|
|
|
#![allow(unused, clippy::blacklisted_name)]
|
2021-07-15 08:44:10 +00:00
|
|
|
|
|
|
|
use std::rc::Rc;
|
|
|
|
use std::sync::Mutex;
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
pub struct MyStructWithPrivItem {
|
2021-07-15 08:44:10 +00:00
|
|
|
foo: Rc<Mutex<i32>>,
|
|
|
|
}
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
pub struct MyStructWithPubItem {
|
|
|
|
pub foo: Rc<Mutex<i32>>,
|
|
|
|
}
|
|
|
|
|
2021-07-15 08:44:10 +00:00
|
|
|
pub struct SubT<T> {
|
|
|
|
foo: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum MyEnum {
|
|
|
|
One,
|
|
|
|
Two,
|
|
|
|
}
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
// All of these test should be trigger the lint because they are not
|
|
|
|
// part of the public api
|
|
|
|
fn test1<T>(foo: Rc<Mutex<T>>) {}
|
|
|
|
fn test2(foo: Rc<Mutex<MyEnum>>) {}
|
|
|
|
fn test3(foo: Rc<Mutex<SubT<usize>>>) {}
|
2021-07-15 08:44:10 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
// All of these test should be allowed because they are part of the
|
|
|
|
// public api and `avoid_breaking_exported_api` is `false` by default.
|
|
|
|
pub fn pub_test1<T>(foo: Rc<Mutex<T>>) {}
|
|
|
|
pub fn pub_test2(foo: Rc<Mutex<MyEnum>>) {}
|
|
|
|
pub fn pub_test3(foo: Rc<Mutex<SubT<usize>>>) {}
|
2021-07-15 08:44:10 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
fn main() {}
|