E.g. http://doc.rust-lang.org/nightly/std/thread/fn.scoped.html is all on one line ``` rust pub fn scoped<'a, T, F>(f: F) -> JoinGuard<'a, T> where T: Send + 'a, F: FnOnce() -> T, F: Send + 'a ``` It'd be much nicer as ``` rust pub fn scoped<'a, T, F>(f: F) -> JoinGuard<'a, T> where T: Send + 'a, F: FnOnce() -> T, F: Send + 'a ``` or even broken more.