2015-08-19 15:39:45 -05:00
|
|
|
// Closures
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let square = (|i: i32| i * i);
|
|
|
|
|
|
|
|
let commented = |// first
|
|
|
|
a, // argument
|
|
|
|
// second
|
|
|
|
b: WithType, // argument
|
|
|
|
// ignored
|
|
|
|
_| {
|
2015-09-09 16:09:39 -05:00
|
|
|
(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb)
|
|
|
|
};
|
2015-08-19 15:39:45 -05:00
|
|
|
|
|
|
|
let block_body = move |xxxxxxxxxxxxxxxxxxxxxxxxxxxxx,
|
|
|
|
ref yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy| {
|
2015-09-09 16:09:39 -05:00
|
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxx + yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
|
|
|
|
};
|
2015-08-19 15:39:45 -05:00
|
|
|
|
|
|
|
let loooooooooooooong_name = |field| {
|
|
|
|
// TODO(#27): format comments.
|
2015-09-09 16:09:39 -05:00
|
|
|
if field.node.attrs.len() > 0 {
|
|
|
|
field.node.attrs[0].span.lo
|
|
|
|
} else {
|
|
|
|
field.span.lo
|
|
|
|
}
|
|
|
|
};
|
2015-08-19 15:39:45 -05:00
|
|
|
|
|
|
|
let block_me = |field| {
|
2015-09-09 16:09:39 -05:00
|
|
|
if true_story() {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
2
|
|
|
|
}
|
|
|
|
};
|
2015-08-19 15:39:45 -05:00
|
|
|
|
|
|
|
let unblock_me = |trivial| closure();
|
|
|
|
|
|
|
|
let empty = |arg| {};
|
2015-08-20 15:08:51 -05:00
|
|
|
|
2015-09-08 13:56:33 -05:00
|
|
|
let simple = |arg| { /* TODO(#27): comment formatting */
|
2015-09-10 17:53:21 -05:00
|
|
|
foo(arg)
|
|
|
|
};
|
2015-09-08 13:56:33 -05:00
|
|
|
|
2015-08-20 15:08:51 -05:00
|
|
|
let test = || {
|
2015-09-09 16:09:39 -05:00
|
|
|
do_something();
|
|
|
|
do_something_else();
|
|
|
|
};
|
2015-08-20 15:08:51 -05:00
|
|
|
|
2015-08-20 16:05:41 -05:00
|
|
|
let arg_test = |big_argument_name, test123| {
|
2015-09-09 16:09:39 -05:00
|
|
|
looooooooooooooooooong_function_naaaaaaaaaaaaaaaaame()
|
|
|
|
};
|
2015-08-20 16:05:41 -05:00
|
|
|
|
|
|
|
let arg_test = |big_argument_name, test123| {
|
2015-09-09 16:09:39 -05:00
|
|
|
looooooooooooooooooong_function_naaaaaaaaaaaaaaaaame()
|
|
|
|
};
|
2015-08-20 16:05:41 -05:00
|
|
|
|
2015-09-08 13:56:33 -05:00
|
|
|
let simple_closure = move || -> () {};
|
|
|
|
|
|
|
|
let closure = |input: Ty| -> Option<String> { foo() };
|
|
|
|
|
|
|
|
let closure_with_return_type = |aaaaaaaaaaaaaaaaaaaaaaarg1,
|
|
|
|
aaaaaaaaaaaaaaaaaaaaaaarg2|
|
|
|
|
-> Strong {
|
2015-09-10 17:53:21 -05:00
|
|
|
"sup".to_owned()
|
|
|
|
};
|
2015-09-08 13:56:33 -05:00
|
|
|
|
2015-08-20 15:08:51 -05:00
|
|
|
|arg1, arg2, _, _, arg3, arg4| {
|
|
|
|
let temp = arg4 + arg3;
|
|
|
|
arg2 * arg1 - temp
|
|
|
|
}
|
2015-08-19 15:39:45 -05:00
|
|
|
}
|