]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/signature.stderr
Rollup merge of #94640 - Pointerbender:issue-71146-partial-stabilization, r=yaahc
[rust.git] / src / test / ui / proc-macro / signature.stderr
1 error[E0308]: mismatched types
2   --> $DIR/signature.rs:10:1
3    |
4 LL | / pub unsafe extern "C" fn foo(a: i32, b: u32) -> u32 {
5 LL | |
6 LL | |     loop {}
7 LL | | }
8    | |_^ expected normal fn, found unsafe fn
9    |
10    = note: expected fn pointer `fn(proc_macro::TokenStream) -> proc_macro::TokenStream`
11                  found fn item `unsafe extern "C" fn(i32, u32) -> u32 {foo}`
12 note: associated function defined here
13   --> $SRC_DIR/proc_macro/src/bridge/client.rs:LL:COL
14    |
15 LL |     pub const fn custom_derive(
16    |                  ^^^^^^^^^^^^^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0308`.