]> git.lizzy.rs Git - rust.git/blob - tests/target/long-fn-1.rs
Merge pull request #1615 from Mitranim/patch-1
[rust.git] / tests / target / long-fn-1.rs
1 // Tests that a function which is almost short enough, but not quite, gets
2 // formatted correctly.
3
4 impl Foo {
5     fn some_input(
6         &mut self,
7         input: Input,
8         input_path: Option<PathBuf>,
9     ) -> (Input, Option<PathBuf>) {
10     }
11
12     fn some_inpu(&mut self, input: Input, input_path: Option<PathBuf>) -> (Input, Option<PathBuf>) {
13     }
14 }