rust/tests/target/hard-tabs.rs

97 lines
1.8 KiB
Rust
Raw Normal View History

// rustfmt-normalize_comments: true
// rustfmt-single_line_if_else_max_width: 0
// rustfmt-wrap_comments: true
2015-09-19 09:00:53 +02:00
// rustfmt-hard_tabs: true
// rustfmt-error_on_line_overflow: false
2015-09-19 09:00:53 +02:00
fn main() {
let x = Bar;
let y = Foo { a: x };
Foo {
a: foo(), // comment
// comment
b: bar(),
..something
};
2017-05-25 15:55:33 +02:00
fn foo(a: i32, a: i32, a: i32, a: i32, a: i32, a: i32, a: i32, a: i32, a: i32, a: i32, a: i32) {
2015-09-19 09:00:53 +02:00
}
2017-10-01 14:21:20 +02:00
let str =
"AAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAa";
2015-09-19 09:00:53 +02:00
if let (
some_very_large,
tuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuple,
) = 1 + 2 + 3
2017-06-12 06:01:41 +02:00
{}
2015-09-19 09:00:53 +02:00
if cond() {
something();
} else if different_cond() {
something_else();
} else {
2017-09-15 05:20:58 +02:00
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
2015-09-19 09:00:53 +02:00
}
unsafe /* very looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
* comment */ {
}
unsafe /* So this is a very long comment.
* Multi-line, too.
* Will it still format correctly? */ {
}
let chain = funktion_kall()
2016-04-22 08:53:39 +02:00
.go_to_next_line_with_tab()
.go_to_next_line_with_tab()
.go_to_next_line_with_tab();
2017-06-12 06:01:41 +02:00
let z = [
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx,
yyyyyyyyyyyyyyyyyyyyyyyyyyy,
zzzzzzzzzzzzzzzzzz,
q,
];
2015-09-19 09:00:53 +02:00
fn generic<T>(arg: T) -> &SomeType
2017-06-12 06:01:41 +02:00
where
2017-06-17 19:04:03 +02:00
T: Fn(
// First arg
A,
// Second argument
B,
C,
D,
// pre comment
E, // last comment
2017-06-17 19:04:03 +02:00
) -> &SomeType,
2015-09-19 09:00:53 +02:00
{
arg(a, b, c, d, e)
}
2017-11-02 13:38:20 +01:00
loong_func().quux(move || {
if true {
1
} else {
2
}
2017-06-03 15:50:55 +02:00
});
2015-09-19 09:00:53 +02:00
fffffffffffffffffffffffffffffffffff(a, {
SCRIPT_TASK_ROOT.with(|root| {
*root.borrow_mut() = Some(&script_task);
});
});
2017-03-06 23:28:25 +01:00
a.b.c.d();
2015-09-19 09:00:53 +02:00
x().y(|| match cond() {
2017-06-03 15:50:55 +02:00
true => (),
false => (),
});
2015-09-19 09:00:53 +02:00
}