rust/tests/source/issue-913.rs
Sebastian Blunt 235f33b230
Make tests fail if rustfmt encounters an error
Previously tests would not fail if they encountered an error such as
LineOverflow or TrailingWhitespace. Making the tests error out will fix
this mismatch between running rustfmt for real and running the tests.

This also modifies all tests that previously contained errors so that
they no longer contain errors (in almost all of the tests this is
accomplished by setting error_on_line_overflow = false).
2017-02-19 19:57:02 +01:00

22 lines
808 B
Rust

// rustfmt-error_on_line_overflow: false
mod client {
impl Client {
fn test(self) -> Result<()> {
let next_state = match self.state {
State::V5(v5::State::Command(v5::coand::State::WriteVersion(ref mut response))) => {
let x = reformat . meeee() ;
}
};
let next_state = match self.state {
State::V5(v5::State::Command(v5::comand::State::WriteVersion(ref mut response))) => {
// The pattern cannot be formatted in a way that the match stays
// within the column limit. The rewrite should therefore be
// skipped.
let x = dont . reformat . meeee();
}
};
}
}
}