rust/tests/target/chains.rs

65 lines
1.7 KiB
Rust
Raw Normal View History

2015-09-09 23:13:37 +02:00
// Test chain formatting.
fn main() {
2015-09-11 00:53:21 +02:00
// Don't put chains on a single line if it wasn't so in source.
let a = b.c
.d
.1
.foo(|x| x + 1);
2015-09-09 23:13:37 +02:00
bbbbbbbbbbbbbbbbbbb.ccccccccccccccccccccccccccccccccccccc.ddddddddddddddddddddddddddd();
bbbbbbbbbbbbbbbbbbb.ccccccccccccccccccccccccccccccccccccc
2015-09-09 23:14:54 +02:00
.ddddddddddddddddddddddddddd
.eeeeeeee();
2015-09-09 23:13:37 +02:00
2015-09-11 00:53:21 +02:00
// Test case where first chain element isn't a path, but is shorter than
// the size of a tab.
2015-09-09 23:13:37 +02:00
x().y(|| {
match cond() {
true => (),
false => (),
}
});
loong_func().quux(move || {
if true {
1
} else {
2
}
});
2015-09-09 23:13:37 +02:00
some_fuuuuuuuuunction().method_call_a(aaaaa, bbbbb, |c| {
let x = c;
x
});
some_fuuuuuuuuunction()
.method_call_a(aaaaa, bbbbb, |c| {
let x = c;
x
})
.method_call_b(aaaaa, bbbbb, |c| {
let x = c;
x
});
fffffffffffffffffffffffffffffffffff(a, {
SCRIPT_TASK_ROOT.with(|root| {
*root.borrow_mut() = Some(&script_task);
});
});
2015-09-09 23:14:09 +02:00
2015-09-09 23:13:37 +02:00
let suuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuum = xxxxxxx.map(|x| x + 5)
2015-09-09 23:14:54 +02:00
.map(|x| x / 2)
.fold(0,
|acc, x| acc + x);
aaaaaaaaaaaaaaaa.map(|x| {
x += 1;
x
})
.filter(some_mod::some_filter)
2015-09-09 23:13:37 +02:00
}