2017-02-12 08:10:25 -06:00
|
|
|
error: mutable borrow from immutable input(s)
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:16:39
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
16 | fn this_wont_hurt_a_bit(&self) -> &mut Foo {
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::mut-from-ref` implied by `-D warnings`
|
2017-02-12 08:10:25 -06:00
|
|
|
note: immutable borrow here
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:16:29
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
16 | fn this_wont_hurt_a_bit(&self) -> &mut Foo {
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^
|
2017-02-12 08:10:25 -06:00
|
|
|
|
|
|
|
error: mutable borrow from immutable input(s)
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:22:25
|
2017-02-12 08:10:25 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
22 | fn ouch(x: &Foo) -> &mut Foo;
|
2017-02-12 08:10:25 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
note: immutable borrow here
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:22:16
|
2017-02-12 08:10:25 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
22 | fn ouch(x: &Foo) -> &mut Foo;
|
2017-02-12 08:10:25 -06:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: mutable borrow from immutable input(s)
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:31:21
|
2017-02-12 08:10:25 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
31 | fn fail(x: &u32) -> &mut u16 {
|
2017-02-12 08:10:25 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
note: immutable borrow here
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:31:12
|
2017-02-12 08:10:25 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
31 | fn fail(x: &u32) -> &mut u16 {
|
2017-02-12 08:10:25 -06:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: mutable borrow from immutable input(s)
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:35:50
|
2017-02-12 08:10:25 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
35 | fn fail_lifetime<'a>(x: &'a u32, y: &mut u32) -> &'a mut u32 {
|
2017-02-12 08:10:25 -06:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: immutable borrow here
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:35:25
|
2017-02-12 08:10:25 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
35 | fn fail_lifetime<'a>(x: &'a u32, y: &mut u32) -> &'a mut u32 {
|
2017-02-12 08:10:25 -06:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: mutable borrow from immutable input(s)
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:39:67
|
2017-02-12 08:10:25 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
39 | fn fail_double<'a, 'b>(x: &'a u32, y: &'a u32, z: &'b mut u32) -> &'a mut u32 {
|
2017-02-12 08:10:25 -06:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: immutable borrow here
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/mut_from_ref.rs:39:27
|
2017-02-10 17:32:12 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
39 | fn fail_double<'a, 'b>(x: &'a u32, y: &'a u32, z: &'b mut u32) -> &'a mut u32 {
|
2017-02-12 08:10:25 -06:00
|
|
|
| ^^^^^^^ ^^^^^^^
|
2017-02-10 12:39:03 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|