about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2015-01-08 10:59:40 -0500
committerNiko Matsakis <niko@alum.mit.edu>2015-01-08 11:02:25 -0500
commit705b92bdfe33d0d6febdf945340262514e1b3b5c (patch)
treeed30cab477b05b20c01b45747ef72395643ab908 /src
parentbf43e8315ec8ccc821c550e7367950a538bd6c9c (diff)
downloadrust-705b92bdfe33d0d6febdf945340262514e1b3b5c.tar.gz
rust-705b92bdfe33d0d6febdf945340262514e1b3b5c.zip
Wrap long line
Diffstat (limited to 'src')
-rw-r--r--src/test/compile-fail/borrowck-lend-flow-loop.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/compile-fail/borrowck-lend-flow-loop.rs b/src/test/compile-fail/borrowck-lend-flow-loop.rs
index 97f59789068..491a0d40bec 100644
--- a/src/test/compile-fail/borrowck-lend-flow-loop.rs
+++ b/src/test/compile-fail/borrowck-lend-flow-loop.rs
@@ -131,7 +131,9 @@ fn loop_break_pops_scopes<'r, F>(_v: &'r mut [usize], mut f: F) where
     }
 }
 
-fn loop_loop_pops_scopes<'r, F>(_v: &'r mut [usize], mut f: F) where F: FnMut(&'r mut usize) -> bool {
+fn loop_loop_pops_scopes<'r, F>(_v: &'r mut [usize], mut f: F)
+    where F: FnMut(&'r mut usize) -> bool
+{
     // Similar to `loop_break_pops_scopes` but for the `loop` keyword
 
     while cond() {