]> git.lizzy.rs Git - rust.git/blobdiff - tests/target/fn-simple.rs
Tidy up and pass tests
[rust.git] / tests / target / fn-simple.rs
index 697fe21501c3d4cceb1788f8f1cdcb0492ed7718..4e6e649383559a02f2defadeb0002ffe8f3b4459 100644 (file)
@@ -1,77 +1,87 @@
 // rustfmt-normalize_comments: true
 
-fn simple(// pre-comment on a function!?
-          i: i32, // yes, it's possible!
-          response: NoWay /* hose */) {
-    fn op(x: Typ,
-          key: &[u8],
-          upd: Box<Fn(Option<&memcache::Item>)
-                      -> (memcache::Status, Result<memcache::Item, Option<String>>)>)
-          -> MapResult {
+fn simple(
+    // pre-comment on a function!?
+    i: i32,          // yes, it's possible!
+    response: NoWay, // hose
+) {
+    fn op(
+        x: Typ,
+        key: &[u8],
+        upd: Box<
+            Fn(Option<&memcache::Item>)
+                -> (memcache::Status, Result<memcache::Item, Option<String>>),
+        >,
+    ) -> MapResult {
     }
 
     "cool"
 }
 
-
-fn weird_comment(// /*/ double level */ comment
-                 x: Hello, // /*/* tripple, even */*/
-                 // Does this work?
-                 y: World) {
-    simple(// does this preserve comments now?
-           42,
-           NoWay)
+fn weird_comment(
+    // /*/ double level */ comment
+    x: Hello, // /*/* triple, even */*/
+    // Does this work?
+    y: World,
+) {
+    simple(/* does this preserve comments now? */ 42, NoWay)
 }
 
 fn generic<T>(arg: T) -> &SomeType
-    where T: Fn(// First arg
-                A,
-                // Second argument
-                B,
-                C,
-                D,
-                // pre comment
-                E /* last comment */)
-                -> &SomeType
+where
+    T: Fn(
+        // First arg
+        A,
+        // Second argument
+        B,
+        C,
+        D,
+        // pre comment
+        E, // last comment
+    ) -> &SomeType,
 {
     arg(a, b, c, d, e)
 }
 
 fn foo() -> ! {}
 
-pub fn http_fetch_async(listener: Box<AsyncCORSResponseListener + Send>,
-                        script_chan: Box<ScriptChan + Send>) {
+pub fn http_fetch_async(
+    listener: Box<AsyncCORSResponseListener + Send>,
+    script_chan: Box<ScriptChan + Send>,
+) {
 }
 
 fn some_func<T: Box<Trait + Bound>>(val: T) {}
 
-fn zzzzzzzzzzzzzzzzzzzz<Type, NodeType>(selff: Type,
-                                        mut handle: node::Handle<IdRef<'id, Node<K, V>>,
-                                                                 Type,
-                                                                 NodeType>)
-                                        -> SearchStack<'a, K, V, Type, NodeType> {
+fn zzzzzzzzzzzzzzzzzzzz<Type, NodeType>(
+    selff: Type,
+    mut handle: node::Handle<IdRef<'id, Node<K, V>>, Type, NodeType>,
+) -> SearchStack<'a, K, V, Type, NodeType> {
 }
 
-unsafe fn generic_call(cx: *mut JSContext,
-                       argc: libc::c_uint,
-                       vp: *mut JSVal,
-                       is_lenient: bool,
-                       call: unsafe extern "C" fn(*const JSJitInfo,
-                                                  *mut JSContext,
-                                                  HandleObject,
-                                                  *mut libc::c_void,
-                                                  u32,
-                                                  *mut JSVal)
-                                                  -> u8) {
+unsafe fn generic_call(
+    cx: *mut JSContext,
+    argc: libc::c_uint,
+    vp: *mut JSVal,
+    is_lenient: bool,
+    call: unsafe extern "C" fn(
+        *const JSJitInfo,
+        *mut JSContext,
+        HandleObject,
+        *mut libc::c_void,
+        u32,
+        *mut JSVal,
+    ) -> u8,
+) {
     let f: fn(_, _) -> _ = panic!();
 }
 
-pub fn start_export_thread<C: CryptoSchemee + 'static>
-    (database: &Database,
-     crypto_scheme: &C,
-     block_size: usize,
-     source_path: &Path)
-     -> BonzoResult<mpsc::Consumer<'static, FileInstruction>> {
+pub fn start_export_thread<C: CryptoSchemee + 'static>(
+    database: &Database,
+    crypto_scheme: &C,
+    block_size: usize,
+    source_path: &Path,
+) -> BonzoResult<mpsc::Consumer<'static, FileInstruction>> {
 }
 
 pub fn waltz(cwd: &Path) -> CliAssert {
@@ -81,5 +91,17 @@ pub fn waltz(cwd: &Path) -> CliAssert {
                 rewrite_comment(comment, block_style, width, offset, formatting_fig);
         }
     }
+}
 
+// #2003
+mod foo {
+    fn __bindgen_test_layout_i_open0_c_open1_char_a_open2_char_close2_close1_close0_instantiation()
+    {
+        foo();
+    }
 }
+
+// #2082
+pub(crate) fn init() {}
+
+crate fn init() {}