]> git.lizzy.rs Git - rust.git/blob - tests/target/long-fn-1.rs
Merge pull request #84 from marcusklaas/tests
[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(&mut self,
6                   input: Input,
7                   input_path: Option<PathBuf>)
8                   -> (Input, Option<PathBuf>) {
9     }
10
11     fn some_inpu(&mut self, input: Input, input_path: Option<PathBuf>) -> (Input, Option<PathBuf>) {
12     }
13 }