| error: First Pass analysis includes: |
| --> $DIR/destructure_patterns.rs:11:5 |
| | |
| LL | / || { |
| LL | | |
| LL | | |
| LL | | let [a, b, .., e] = arr; |
| ... | |
| LL | | assert_eq!(e, "E"); |
| LL | | }; |
| | |_____^ |
| | |
| note: Capturing arr[Index] -> ByValue |
| --> $DIR/destructure_patterns.rs:14:29 |
| | |
| LL | let [a, b, .., e] = arr; |
| | ^^^ |
| note: Capturing arr[Index] -> ByValue |
| --> $DIR/destructure_patterns.rs:14:29 |
| | |
| LL | let [a, b, .., e] = arr; |
| | ^^^ |
| note: Capturing arr[Index] -> ByValue |
| --> $DIR/destructure_patterns.rs:14:29 |
| | |
| LL | let [a, b, .., e] = arr; |
| | ^^^ |
| |
| error: Min Capture analysis includes: |
| --> $DIR/destructure_patterns.rs:11:5 |
| | |
| LL | / || { |
| LL | | |
| LL | | |
| LL | | let [a, b, .., e] = arr; |
| ... | |
| LL | | assert_eq!(e, "E"); |
| LL | | }; |
| | |_____^ |
| | |
| note: Min Capture arr[] -> ByValue |
| --> $DIR/destructure_patterns.rs:14:29 |
| | |
| LL | let [a, b, .., e] = arr; |
| | ^^^ |
| |
| error: First Pass analysis includes: |
| --> $DIR/destructure_patterns.rs:37:5 |
| | |
| LL | / || { |
| LL | | |
| LL | | |
| LL | | let Point { x: ref mut x, y: _, id: moved_id } = p; |
| ... | |
| LL | | println!("{}, {}", x, moved_id); |
| LL | | }; |
| | |_____^ |
| | |
| note: Capturing p[(0, 0)] -> Mutable |
| --> $DIR/destructure_patterns.rs:40:58 |
| | |
| LL | let Point { x: ref mut x, y: _, id: moved_id } = p; |
| | ^ |
| note: Capturing p[(2, 0)] -> ByValue |
| --> $DIR/destructure_patterns.rs:40:58 |
| | |
| LL | let Point { x: ref mut x, y: _, id: moved_id } = p; |
| | ^ |
| |
| error: Min Capture analysis includes: |
| --> $DIR/destructure_patterns.rs:37:5 |
| | |
| LL | / || { |
| LL | | |
| LL | | |
| LL | | let Point { x: ref mut x, y: _, id: moved_id } = p; |
| ... | |
| LL | | println!("{}, {}", x, moved_id); |
| LL | | }; |
| | |_____^ |
| | |
| note: Min Capture p[(0, 0)] -> Mutable |
| --> $DIR/destructure_patterns.rs:40:58 |
| | |
| LL | let Point { x: ref mut x, y: _, id: moved_id } = p; |
| | ^ |
| note: Min Capture p[(2, 0)] -> ByValue |
| --> $DIR/destructure_patterns.rs:40:58 |
| | |
| LL | let Point { x: ref mut x, y: _, id: moved_id } = p; |
| | ^ |
| |
| error: First Pass analysis includes: |
| --> $DIR/destructure_patterns.rs:55:5 |
| | |
| LL | / || { |
| LL | | |
| LL | | |
| LL | | let (ref mut x, ref ref_str, (moved_s, _)) = t; |
| ... | |
| LL | | println!("{}, {} {}", x, ref_str, moved_s); |
| LL | | }; |
| | |_____^ |
| | |
| note: Capturing t[(0, 0)] -> Mutable |
| --> $DIR/destructure_patterns.rs:58:54 |
| | |
| LL | let (ref mut x, ref ref_str, (moved_s, _)) = t; |
| | ^ |
| note: Capturing t[(1, 0)] -> Immutable |
| --> $DIR/destructure_patterns.rs:58:54 |
| | |
| LL | let (ref mut x, ref ref_str, (moved_s, _)) = t; |
| | ^ |
| note: Capturing t[(2, 0),(0, 0)] -> ByValue |
| --> $DIR/destructure_patterns.rs:58:54 |
| | |
| LL | let (ref mut x, ref ref_str, (moved_s, _)) = t; |
| | ^ |
| |
| error: Min Capture analysis includes: |
| --> $DIR/destructure_patterns.rs:55:5 |
| | |
| LL | / || { |
| LL | | |
| LL | | |
| LL | | let (ref mut x, ref ref_str, (moved_s, _)) = t; |
| ... | |
| LL | | println!("{}, {} {}", x, ref_str, moved_s); |
| LL | | }; |
| | |_____^ |
| | |
| note: Min Capture t[(0, 0)] -> Mutable |
| --> $DIR/destructure_patterns.rs:58:54 |
| | |
| LL | let (ref mut x, ref ref_str, (moved_s, _)) = t; |
| | ^ |
| note: Min Capture t[(1, 0)] -> Immutable |
| --> $DIR/destructure_patterns.rs:58:54 |
| | |
| LL | let (ref mut x, ref ref_str, (moved_s, _)) = t; |
| | ^ |
| note: Min Capture t[(2, 0),(0, 0)] -> ByValue |
| --> $DIR/destructure_patterns.rs:58:54 |
| | |
| LL | let (ref mut x, ref ref_str, (moved_s, _)) = t; |
| | ^ |
| |
| error: aborting due to 6 previous errors |
| |