Skip to content

Commit 032081c

Browse files
committed
Trivial updates to .nll.stderr files post-rebase, reflecting s/-Znll/nll/ in messages.
1 parent ea45474 commit 032081c

File tree

48 files changed

+57
-57
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+57
-57
lines changed

src/test/ui/borrowck/issue-45983.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/issue-45983.rs:17:27
33
|
44
LL | give_any(|y| x = Some(y));

src/test/ui/borrowck/issue-7573.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/issue-7573.rs:27:31
33
|
44
LL | let mut lines_to_use: Vec<&CrateId> = Vec::new();

src/test/ui/borrowck/regions-escape-bound-fn-2.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/regions-escape-bound-fn-2.rs:18:27
33
|
44
LL | with_int(|y| x = Some(y));

src/test/ui/borrowck/regions-escape-bound-fn.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/regions-escape-bound-fn.rs:18:22
33
|
44
LL | with_int(|y| x = Some(y));

src/test/ui/borrowck/regions-escape-unboxed-closure.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/regions-escape-unboxed-closure.rs:16:27
33
|
44
LL | with_int(&mut |y| x = Some(y));

src/test/ui/closure-expected-type/expect-region-supply-region.nll.stderr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/expect-region-supply-region.rs:28:13
33
|
44
LL | f = Some(x); //~ ERROR borrowed data cannot be stored outside of its closure
55
| ^^^^^^^
66

7-
warning: not reporting region error due to -Znll
7+
warning: not reporting region error due to nll
88
--> $DIR/expect-region-supply-region.rs:38:13
99
|
1010
LL | f = Some(x); //~ ERROR borrowed data cannot be stored outside of its closure
1111
| ^^^^^^^
1212

13-
warning: not reporting region error due to -Znll
13+
warning: not reporting region error due to nll
1414
--> $DIR/expect-region-supply-region.rs:47:33
1515
|
1616
LL | closure_expecting_bound(|x: &'x u32| {
1717
| ^^^^^^^
1818

19-
warning: not reporting region error due to -Znll
19+
warning: not reporting region error due to nll
2020
--> $DIR/expect-region-supply-region.rs:52:13
2121
|
2222
LL | f = Some(x);

src/test/ui/error-codes/E0621-does-not-trigger-for-closures.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/E0621-does-not-trigger-for-closures.rs:25:5
33
|
44
LL | invoke(&x, |a, b| if a > b { a } else { b }); //~ ERROR E0495

src/test/ui/in-band-lifetimes/impl/dyn-trait.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/dyn-trait.rs:33:16
33
|
44
LL | static_val(x); //~ ERROR cannot infer

src/test/ui/in-band-lifetimes/mismatched.nll.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/mismatched.rs:14:42
33
|
44
LL | fn foo(x: &'a u32, y: &u32) -> &'a u32 { y } //~ ERROR explicit lifetime required
55
| ^
66

7-
warning: not reporting region error due to -Znll
7+
warning: not reporting region error due to nll
88
--> $DIR/mismatched.rs:16:46
99
|
1010
LL | fn foo2(x: &'a u32, y: &'b u32) -> &'a u32 { y } //~ ERROR lifetime mismatch

src/test/ui/in-band-lifetimes/mismatched_trait.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/mismatched_trait.rs:16:9
33
|
44
LL | y //~ ERROR explicit lifetime required

src/test/ui/issue-13058.nll.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/issue-13058.rs:24:21
33
|
44
LL | let cont_iter = cont.iter();
55
| ^^^^
66

7-
warning: not reporting region error due to -Znll
7+
warning: not reporting region error due to nll
88
--> $DIR/issue-13058.rs:24:26
99
|
1010
LL | let cont_iter = cont.iter();

src/test/ui/lifetime-errors/42701_one_named_and_one_anonymous.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/42701_one_named_and_one_anonymous.rs:20:9
33
|
44
LL | &*x //~ ERROR explicit lifetime

src/test/ui/lifetime-errors/ex1-return-one-existing-name-early-bound-in-struct.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex1-return-one-existing-name-early-bound-in-struct.rs:21:21
33
|
44
LL | other //~ ERROR explicit lifetime

src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else-2.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex1-return-one-existing-name-if-else-2.rs:12:16
33
|
44
LL | if x > y { x } else { y } //~ ERROR explicit lifetime

src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else-3.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex1-return-one-existing-name-if-else-3.rs:12:27
33
|
44
LL | if x > y { x } else { y } //~ ERROR explicit lifetime

src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else-using-impl-2.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex1-return-one-existing-name-if-else-using-impl-2.rs:14:15
33
|
44
LL | if x > y { x } else { y } //~ ERROR explicit lifetime

src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else-using-impl-3.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex1-return-one-existing-name-if-else-using-impl-3.rs:18:36
33
|
44
LL | if true { &self.field } else { x } //~ ERROR explicit lifetime

src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else-using-impl.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex1-return-one-existing-name-if-else-using-impl.rs:21:20
33
|
44
LL | if x > y { x } else { y } //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex1-return-one-existing-name-if-else.rs:12:27
33
|
44
LL | if x > y { x } else { y } //~ ERROR explicit lifetime

src/test/ui/lifetime-errors/ex1-return-one-existing-name-return-type-is-anon.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex1-return-one-existing-name-return-type-is-anon.rs:18:5
33
|
44
LL | x //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex1-return-one-existing-name-self-is-anon.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex1-return-one-existing-name-self-is-anon.rs:18:30
33
|
44
LL | if true { x } else { self } //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex2a-push-one-existing-name-2.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex2a-push-one-existing-name-2.rs:16:12
33
|
44
LL | y.push(x); //~ ERROR explicit lifetime

src/test/ui/lifetime-errors/ex2a-push-one-existing-name-early-bound.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex2a-push-one-existing-name-early-bound.rs:17:12
33
|
44
LL | x.push(y); //~ ERROR explicit lifetime required

src/test/ui/lifetime-errors/ex2a-push-one-existing-name.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex2a-push-one-existing-name.rs:16:12
33
|
44
LL | x.push(y); //~ ERROR explicit lifetime

src/test/ui/lifetime-errors/ex2b-push-no-existing-names.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex2b-push-no-existing-names.rs:16:12
33
|
44
LL | x.push(y); //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex2c-push-inference-variable.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex2c-push-inference-variable.rs:16:13
33
|
44
LL | let z = Ref { data: y.data };

src/test/ui/lifetime-errors/ex2d-push-inference-variable-2.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex2d-push-inference-variable-2.rs:17:13
33
|
44
LL | let b = Ref { data: y.data };

src/test/ui/lifetime-errors/ex2e-push-inference-variable-3.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex2e-push-inference-variable-3.rs:17:13
33
|
44
LL | let b = Ref { data: y.data };

src/test/ui/lifetime-errors/ex3-both-anon-regions-2.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-2.rs:12:9
33
|
44
LL | v = x; //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-3.nll.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-3.rs:12:13
33
|
44
LL | z.push((x,y)); //~ ERROR lifetime mismatch
55
| ^
66

7-
warning: not reporting region error due to -Znll
7+
warning: not reporting region error due to nll
88
--> $DIR/ex3-both-anon-regions-3.rs:12:15
99
|
1010
LL | z.push((x,y)); //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-both-are-structs-2.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-both-are-structs-2.rs:16:11
33
|
44
LL | x.b = y.b; //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-both-are-structs-3.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-both-are-structs-3.rs:16:11
33
|
44
LL | x.a = x.b; //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-both-are-structs-4.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-both-are-structs-4.rs:16:11
33
|
44
LL | x.a = x.b; //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-both-are-structs-earlybound-regions.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-both-are-structs-earlybound-regions.rs:18:12
33
|
44
LL | x.push(y); //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-both-are-structs-latebound-regions.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-both-are-structs-latebound-regions.rs:15:12
33
|
44
LL | x.push(y); //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-both-are-structs.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-both-are-structs.rs:15:12
33
|
44
LL | x.push(y); //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-latebound-regions.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-latebound-regions.rs:12:12
33
|
44
LL | x.push(y); //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-one-is-struct-2.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-one-is-struct-2.rs:14:9
33
|
44
LL | y = x.b; //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-one-is-struct-3.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-one-is-struct-3.rs:14:11
33
|
44
LL | y.b = x; //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-one-is-struct-4.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-one-is-struct-4.rs:14:11
33
|
44
LL | y.b = x; //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-one-is-struct.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-one-is-struct.rs:17:11
33
|
44
LL | x.b = y; //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-return-type-is-anon.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-return-type-is-anon.rs:17:5
33
|
44
LL | x //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-self-is-anon.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-self-is-anon.rs:17:19
33
|
44
LL | if true { x } else { self } //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-using-fn-items.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-using-fn-items.rs:11:10
33
|
44
LL | y.push(z); //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-using-impl-items.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-using-impl-items.rs:15:16
33
|
44
LL | x.push(y); //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions-using-trait-objects.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions-using-trait-objects.rs:11:10
33
|
44
LL | y.push(z); //~ ERROR lifetime mismatch

src/test/ui/lifetime-errors/ex3-both-anon-regions.nll.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/ex3-both-anon-regions.rs:12:12
33
|
44
LL | x.push(y); //~ ERROR lifetime mismatch

src/test/ui/underscore-lifetime/dyn-trait-underscore.nll.stderr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
warning: not reporting region error due to -Znll
1+
warning: not reporting region error due to nll
22
--> $DIR/dyn-trait-underscore.rs:20:14
33
|
44
LL | Box::new(items.iter()) //~ ERROR cannot infer an appropriate lifetime
55
| ^^^^^
66

7-
warning: not reporting region error due to -Znll
7+
warning: not reporting region error due to nll
88
--> $DIR/dyn-trait-underscore.rs:20:20
99
|
1010
LL | Box::new(items.iter()) //~ ERROR cannot infer an appropriate lifetime
1111
| ^^^^
1212

13-
warning: not reporting region error due to -Znll
13+
warning: not reporting region error due to nll
1414
--> $DIR/dyn-trait-underscore.rs:20:5
1515
|
1616
LL | Box::new(items.iter()) //~ ERROR cannot infer an appropriate lifetime
1717
| ^^^^^^^^
1818

19-
warning: not reporting region error due to -Znll
19+
warning: not reporting region error due to nll
2020
--> $DIR/dyn-trait-underscore.rs:20:5
2121
|
2222
LL | Box::new(items.iter()) //~ ERROR cannot infer an appropriate lifetime

0 commit comments

Comments
 (0)