]> git.lizzy.rs Git - rust.git/blob - tests/target/long-fn-1.rs
Tidy up and pass 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(
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 }
15
16 // #1843
17 #[allow(non_snake_case)]
18 pub extern "C" fn Java_com_exonum_binding_storage_indices_ValueSetIndexProxy_nativeContainsByHash(
19 ) -> bool {
20     false
21 }