Skip to content

Commit 7ad2e22

Browse files
author
Jorge Aparicio
committed
remove leftover annotations
1 parent cc8a5a0 commit 7ad2e22

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/doc/reference.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3752,9 +3752,9 @@ An example of creating and calling a closure:
37523752
```rust
37533753
let captured_var = 10;
37543754

3755-
let closure_no_args = |&:| println!("captured_var={}", captured_var);
3755+
let closure_no_args = || println!("captured_var={}", captured_var);
37563756

3757-
let closure_args = |&: arg: i32| -> i32 {
3757+
let closure_args = |arg: i32| -> i32 {
37583758
println!("captured_var={}, arg={}", captured_var, arg);
37593759
arg // Note lack of semicolon after 'arg'
37603760
};

src/librustc/middle/const_eval.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ pub fn eval_const_expr_partial<'tcx>(tcx: &ty::ctxt<'tcx>,
257257
}
258258
}
259259
(Ok(const_int(a)), Ok(const_int(b))) => {
260-
let is_a_min_value = |&:| {
260+
let is_a_min_value = || {
261261
let int_ty = match ty::expr_ty_opt(tcx, e).map(|ty| &ty.sty) {
262262
Some(&ty::ty_int(int_ty)) => int_ty,
263263
_ => return false

src/librustc_typeck/check/dropck.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ fn iterate_over_potentially_unsafe_regions_in_type<'a, 'tcx>(
4545
scope: region::CodeExtent,
4646
depth: uint)
4747
{
48-
let origin = |&:| infer::SubregionOrigin::SafeDestructor(span);
48+
let origin = || infer::SubregionOrigin::SafeDestructor(span);
4949
let mut walker = ty_root.walk();
5050
let opt_phantom_data_def_id = rcx.tcx().lang_items.phantom_data();
5151

src/libstd/sys/unix/process2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ impl Process {
274274
// file descriptor. Otherwise, the first file descriptor opened
275275
// up in the child would be numbered as one of the stdio file
276276
// descriptors, which is likely to wreak havoc.
277-
let setup = |&: src: Option<AnonPipe>, dst: c_int| {
277+
let setup = |src: Option<AnonPipe>, dst: c_int| {
278278
let src = match src {
279279
None => {
280280
let flags = if dst == libc::STDIN_FILENO {

src/libstd/sys/windows/process2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ impl Process {
160160
// Similarly to unix, we don't actually leave holes for the stdio file
161161
// descriptors, but rather open up /dev/null equivalents. These
162162
// equivalents are drawn from libuv's windows process spawning.
163-
let set_fd = |&: fd: &Option<AnonPipe>, slot: &mut HANDLE,
163+
let set_fd = |fd: &Option<AnonPipe>, slot: &mut HANDLE,
164164
is_stdin: bool| {
165165
match *fd {
166166
None => {

0 commit comments

Comments
 (0)