rust-clippy/tests/ui/mut_from_ref.stderr

62 lines
1.8 KiB
Text
Raw Normal View History

2017-02-12 14:10:25 +00:00
error: mutable borrow from immutable input(s)
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:9:39
2017-02-12 14:10:25 +00:00
|
9 | fn this_wont_hurt_a_bit(&self) -> &mut Foo {
| ^^^^^^^^
|
= note: `-D mut-from-ref` implied by `-D warnings`
2017-02-12 14:10:25 +00:00
note: immutable borrow here
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:9:29
2017-02-12 14:10:25 +00:00
|
9 | fn this_wont_hurt_a_bit(&self) -> &mut Foo {
| ^^^^^
error: mutable borrow from immutable input(s)
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:15:25
2017-02-12 14:10:25 +00:00
|
15 | fn ouch(x: &Foo) -> &mut Foo;
| ^^^^^^^^
|
note: immutable borrow here
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:15:16
2017-02-12 14:10:25 +00:00
|
15 | fn ouch(x: &Foo) -> &mut Foo;
| ^^^^
error: mutable borrow from immutable input(s)
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:24:21
2017-02-12 14:10:25 +00:00
|
24 | fn fail(x: &u32) -> &mut u16 {
| ^^^^^^^^
|
note: immutable borrow here
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:24:12
2017-02-12 14:10:25 +00:00
|
24 | fn fail(x: &u32) -> &mut u16 {
| ^^^^
error: mutable borrow from immutable input(s)
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:28:50
2017-02-12 14:10:25 +00:00
|
28 | fn fail_lifetime<'a>(x: &'a u32, y: &mut u32) -> &'a mut u32 {
| ^^^^^^^^^^^
|
note: immutable borrow here
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:28:25
2017-02-12 14:10:25 +00:00
|
28 | fn fail_lifetime<'a>(x: &'a u32, y: &mut u32) -> &'a mut u32 {
| ^^^^^^^
error: mutable borrow from immutable input(s)
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:32:67
2017-02-12 14:10:25 +00:00
|
32 | fn fail_double<'a, 'b>(x: &'a u32, y: &'a u32, z: &'b mut u32) -> &'a mut u32 {
| ^^^^^^^^^^^
|
note: immutable borrow here
2017-08-01 15:54:21 +00:00
--> $DIR/mut_from_ref.rs:32:27
|
2017-02-12 14:10:25 +00:00
32 | fn fail_double<'a, 'b>(x: &'a u32, y: &'a u32, z: &'b mut u32) -> &'a mut u32 {
| ^^^^^^^ ^^^^^^^