-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use revisions for NLL in suggestions
- Loading branch information
Showing
23 changed files
with
330 additions
and
93 deletions.
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
...tic-bound-needing-more-suggestions.stderr → ...ound-needing-more-suggestions.base.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...gestions/impl-on-dyn-trait-with-implicit-static-bound-needing-more-suggestions.nll.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 118 additions & 0 deletions
118
src/test/ui/suggestions/impl-on-dyn-trait-with-implicit-static-bound-nll.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
// FIXME(nll): On NLL stabilization, this should replace | ||
// `impl-on-dyn-trait-with-implicit-static-bound.rs`. Compiletest has | ||
// problems with rustfix and revisions. | ||
// ignore-compare-mode-nll | ||
// compile-flags: -Zborrowck=mir | ||
|
||
#![allow(dead_code)] | ||
|
||
mod foo { | ||
trait OtherTrait<'a> {} | ||
impl<'a> OtherTrait<'a> for &'a () {} | ||
|
||
trait ObjectTrait<T> {} | ||
trait MyTrait<T> { | ||
fn use_self<K>(&self) -> &(); | ||
} | ||
trait Irrelevant {} | ||
|
||
impl<T> MyTrait<T> for dyn ObjectTrait<T> { | ||
fn use_self<K>(&self) -> &() { panic!() } | ||
} | ||
impl<T> Irrelevant for dyn ObjectTrait<T> {} | ||
|
||
fn use_it<'a, T>(val: &'a dyn ObjectTrait<T>) -> impl OtherTrait<'a> + 'a { | ||
val.use_self::<T>() //~ ERROR borrowed data escapes | ||
} | ||
} | ||
|
||
mod bar { | ||
trait ObjectTrait {} | ||
trait MyTrait { | ||
fn use_self(&self) -> &(); | ||
} | ||
trait Irrelevant {} | ||
|
||
impl MyTrait for dyn ObjectTrait { | ||
fn use_self(&self) -> &() { panic!() } | ||
} | ||
impl Irrelevant for dyn ObjectTrait {} | ||
|
||
fn use_it<'a>(val: &'a dyn ObjectTrait) -> &'a () { | ||
val.use_self() | ||
} | ||
} | ||
|
||
mod baz { | ||
trait ObjectTrait {} | ||
trait MyTrait { | ||
fn use_self(&self) -> &(); | ||
} | ||
trait Irrelevant {} | ||
|
||
impl MyTrait for Box<dyn ObjectTrait> { | ||
fn use_self(&self) -> &() { panic!() } | ||
} | ||
impl Irrelevant for Box<dyn ObjectTrait> {} | ||
|
||
fn use_it<'a>(val: &'a Box<dyn ObjectTrait + 'a>) -> &'a () { | ||
val.use_self() | ||
} | ||
} | ||
|
||
mod bat { | ||
trait OtherTrait<'a> {} | ||
impl<'a> OtherTrait<'a> for &'a () {} | ||
|
||
trait ObjectTrait {} | ||
|
||
impl dyn ObjectTrait { | ||
fn use_self(&self) -> &() { panic!() } | ||
} | ||
|
||
fn use_it<'a>(val: &'a dyn ObjectTrait) -> impl OtherTrait<'a> + 'a { | ||
val.use_self() | ||
//~^ ERROR borrowed data escapes | ||
} | ||
} | ||
|
||
mod ban { | ||
trait OtherTrait<'a> {} | ||
impl<'a> OtherTrait<'a> for &'a () {} | ||
|
||
trait ObjectTrait {} | ||
trait MyTrait { | ||
fn use_self(&self) -> &() { panic!() } | ||
} | ||
trait Irrelevant { | ||
fn use_self(&self) -> &() { panic!() } | ||
} | ||
|
||
impl MyTrait for dyn ObjectTrait {} | ||
|
||
fn use_it<'a>(val: &'a dyn ObjectTrait) -> impl OtherTrait<'a> { | ||
val.use_self() //~ ERROR borrowed data escapes | ||
} | ||
} | ||
|
||
mod bal { | ||
trait OtherTrait<'a> {} | ||
impl<'a> OtherTrait<'a> for &'a () {} | ||
|
||
trait ObjectTrait {} | ||
trait MyTrait { | ||
fn use_self(&self) -> &() { panic!() } | ||
} | ||
trait Irrelevant { | ||
fn use_self(&self) -> &() { panic!() } | ||
} | ||
|
||
impl MyTrait for dyn ObjectTrait {} | ||
impl Irrelevant for dyn ObjectTrait {} | ||
|
||
fn use_it<'a>(val: &'a dyn ObjectTrait) -> impl OtherTrait<'a> + 'a { | ||
MyTrait::use_self(val) //~ ERROR borrowed data escapes | ||
} | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/test/ui/suggestions/impl-on-dyn-trait-with-implicit-static-bound.fixed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/test/ui/suggestions/impl-on-dyn-trait-with-implicit-static-bound.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...s/missing-lifetimes-in-signature-2.stderr → ...sing-lifetimes-in-signature-2.base.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.