Rollup merge of #28655 - alfiedotwtf:patch-2, r=sanxiyn
This commit is contained in:
commit
f4dc6c785c
1 changed files with 3 additions and 3 deletions
|
|
@ -349,9 +349,9 @@ fn frob<'a, 'b>(s: &'a str, t: &'b str) -> &str; // Expanded: Output lifetime is
|
|||
fn get_mut(&mut self) -> &mut T; // elided
|
||||
fn get_mut<'a>(&'a mut self) -> &'a mut T; // expanded
|
||||
|
||||
fn args<T:ToCStr>(&mut self, args: &[T]) -> &mut Command // elided
|
||||
fn args<'a, 'b, T:ToCStr>(&'a mut self, args: &'b [T]) -> &'a mut Command // expanded
|
||||
fn args<T:ToCStr>(&mut self, args: &[T]) -> &mut Command; // elided
|
||||
fn args<'a, 'b, T:ToCStr>(&'a mut self, args: &'b [T]) -> &'a mut Command; // expanded
|
||||
|
||||
fn new(buf: &mut [u8]) -> BufWriter; // elided
|
||||
fn new<'a>(buf: &'a mut [u8]) -> BufWriter<'a> // expanded
|
||||
fn new<'a>(buf: &'a mut [u8]) -> BufWriter<'a>; // expanded
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue