Skip to content

Commit 0c2c241

Browse files
committed
address nits
1 parent 7f319a7 commit 0c2c241

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/test/ui/async-await/multiple-lifetimes/variance.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Test for async fn where the parameters have distinct lifetime
55
// parameters that appear in all possible variances.
66

7-
#![feature(arbitrary_self_types, async_await, await_macro)]
7+
#![feature(async_await)]
88

99
#[allow(dead_code)]
1010
async fn lotsa_lifetimes<'a, 'b, 'c>(_: fn(&'a u8), _: fn(&'b u8) -> &'b u8, _: fn() -> &'c u8) { }

src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-original-elided.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// edition:2018
2-
// run-pass
2+
// compile-pass
33
// revisions: migrate mir
44
//[mir]compile-flags: -Z borrowck=mir
55

src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-original-existential.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// edition:2018
2-
// run-pass
2+
// compile-pass
33
// revisions: migrate mir
44
//[mir]compile-flags: -Z borrowck=mir
55

src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-original.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// edition:2018
2-
// run-pass
2+
// compile-pass
33
// revisions: migrate mir
44
//[mir]compile-flags: -Z borrowck=mir
55

src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-other.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// edition:2018
2-
// run-pass
2+
// compile-pass
33
// revisions: migrate mir
44
//[mir]compile-flags: -Z borrowck=mir
55

src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-unsuited.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fn upper_bounds<'a, 'b>(a: Ordinary<'a>, b: Ordinary<'b>) -> impl Trait<'a, 'b>
2525
// ```
2626
// 'a: '0
2727
// 'b: '1
28-
// '0 in ['d, 'e]
28+
// '0 in ['a, 'b]
2929
// ```
3030
//
3131
// but we don't have it.

0 commit comments

Comments
 (0)