summaryrefslogtreecommitdiffstats
path: root/tests/ui/proc-macro/signature.stderr
blob: ba5c8c1571e5896542906e1cb591ce6db93e822b (plain)
1
2
3
4
5
6
7
8
9
10
11
error: derive proc macro has incorrect signature
  --> $DIR/signature.rs:10:1
   |
LL | pub unsafe extern "C" fn foo(a: i32, b: u32) -> u32 {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected normal fn, found unsafe fn
   |
   = note: expected signature `fn(proc_macro::TokenStream) -> proc_macro::TokenStream`
              found signature `unsafe extern "C" fn(i32, u32) -> u32`

error: aborting due to previous error