rust/tests/target/configs/indent_style/rfc_control.rs

40 lines
1.1 KiB
Rust
Raw Normal View History

2017-11-13 08:22:09 +01:00
// rustfmt-indent_style: Block
// #1618
fn main() {
loop {
if foo {
2017-09-15 05:20:58 +02:00
if ((right_paddle_speed < 0.) && (right_paddle.position().y - paddle_size.y / 2. > 5.))
|| ((right_paddle_speed > 0.)
&& (right_paddle.position().y + paddle_size.y / 2. < game_height as f32 - 5.))
{
foo
}
if ai_timer.elapsed_time().as_microseconds() > ai_time.as_microseconds() {
2017-07-26 09:30:58 +02:00
if ball.position().y + ball_radius > right_paddle.position().y + paddle_size.y / 2.
{
foo
}
}
}
}
}
fn issue1656() {
{
{
match rewrite {
Some(ref body_str)
2017-09-15 05:20:58 +02:00
if (!body_str.contains('\n') && body_str.len() <= arm_shape.width)
|| !context.config.match_arm_blocks()
2017-09-15 05:20:58 +02:00
|| (extend && first_line_width(body_str) <= arm_shape.width)
|| is_block =>
2017-07-10 09:52:55 +02:00
{
return None;
}
_ => {}
}
}
}
}