forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#59711 - GuillaumeGomez:substring-test, r=Qu…
…ietMisdreavus Add back the substring test Fixes rust-lang#58331. r? @QuietMisdreavus
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
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,8 @@ | ||
const QUERY = 'waker_from'; | ||
|
||
const EXPECTED = { | ||
'others': [ | ||
{ 'path': 'substring::SuperWaker', 'name': 'local_waker_from_nonlocal' }, | ||
{ 'path': 'substring::SuperWakerTask', 'name': 'local_waker_from_nonlocal' }, | ||
], | ||
}; |
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,21 @@ | ||
pub struct SuperWaker; | ||
|
||
impl SuperWaker { | ||
pub fn local_waker_from_nonlocal() {} | ||
pub fn local_waker_frm_nonlocal() {} | ||
pub fn some_method() {} | ||
pub fn some_other_method() {} | ||
pub fn waker_non_local() {} | ||
pub fn from_non_local() {} | ||
} | ||
|
||
pub struct SuperWakerTask; | ||
|
||
impl SuperWakerTask { | ||
pub fn local_waker_from_nonlocal() {} | ||
pub fn local_waker_frm_nonlocal() {} | ||
pub fn some_method() {} | ||
pub fn some_other_method() {} | ||
pub fn waker_non_local() {} | ||
pub fn from_non_local() {} | ||
} |