2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2020-10-26 21:50:13 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:10:23
|
2020-10-12 21:58:59 +00:00
|
|
|
|
|
2020-10-15 19:56:56 +00:00
|
|
|
LL | static REF_THRESHOLD: &Option<&i32> = &Some(&THRESHOLD);
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `Option<&i32>`
|
2020-10-12 21:58:59 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::ref-option-ref` implied by `-D warnings`
|
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:14:18
|
2020-10-13 20:13:54 +00:00
|
|
|
|
|
2021-04-02 21:35:32 +00:00
|
|
|
LL | const REF_CONST: &Option<&i32> = &Some(CONST_THRESHOLD);
|
2020-10-15 19:56:56 +00:00
|
|
|
| ^^^^^^^^^^^^^ help: try: `Option<&i32>`
|
2020-10-13 20:13:54 +00:00
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:17:25
|
2020-10-15 19:56:56 +00:00
|
|
|
|
|
|
|
|
LL | type RefOptRefU32<'a> = &'a Option<&'a u32>;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try: `Option<&'a u32>`
|
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:19:25
|
2020-10-15 19:56:56 +00:00
|
|
|
|
|
|
|
|
LL | type RefOptRef<'a, T> = &'a Option<&'a T>;
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `Option<&'a T>`
|
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:22:14
|
2020-10-15 19:56:56 +00:00
|
|
|
|
|
|
|
|
LL | fn foo(data: &Option<&u32>) {}
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `Option<&u32>`
|
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:25:23
|
2020-10-15 19:56:56 +00:00
|
|
|
|
|
|
|
|
LL | fn bar(data: &u32) -> &Option<&u32> {
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `Option<&u32>`
|
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:31:11
|
2020-10-15 19:56:56 +00:00
|
|
|
|
|
|
|
|
LL | data: &'a Option<&'a u32>,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try: `Option<&'a u32>`
|
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:35:32
|
2020-10-15 19:56:56 +00:00
|
|
|
|
|
|
|
|
LL | struct StructTupleRef<'a>(u32, &'a Option<&'a u32>);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try: `Option<&'a u32>`
|
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:40:14
|
2020-10-15 19:56:56 +00:00
|
|
|
|
|
|
|
|
LL | Variant2(&'a Option<&'a u32>),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try: `Option<&'a u32>`
|
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:50:14
|
2020-10-15 19:56:56 +00:00
|
|
|
|
|
|
|
|
LL | type A = &'static Option<&'static Self>;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Option<&'static Self>`
|
|
|
|
|
2020-10-29 16:38:46 +00:00
|
|
|
error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/ref_option_ref.rs:57:12
|
2020-10-13 20:13:54 +00:00
|
|
|
|
|
|
|
|
LL | let x: &Option<&u32> = &None;
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `Option<&u32>`
|
|
|
|
|
2020-10-15 19:56:56 +00:00
|
|
|
error: aborting due to 11 previous errors
|
2020-10-12 21:58:59 +00:00
|
|
|
|