]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/signature.stderr
Rollup merge of #98665 - ChrisDenton:deprecated-suggestion, r=compiler-errors
[rust.git] / src / test / ui / proc-macro / signature.stderr
1 error[E0277]: expected a `Fn<(proc_macro::TokenStream,)>` closure, found `unsafe extern "C" fn(i32, u32) -> u32 {foo}`
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    | |_^ call the function in a closure: `|| unsafe { /* code */ }`
9    |
10    = help: the trait `Fn<(proc_macro::TokenStream,)>` is not implemented for `unsafe extern "C" fn(i32, u32) -> u32 {foo}`
11    = note: unsafe function cannot be called generically without an unsafe block
12 note: required by a bound in `ProcMacro::custom_derive`
13   --> $SRC_DIR/proc_macro/src/bridge/client.rs:LL:COL
14    |
15 LL |         expand: impl Fn(crate::TokenStream) -> crate::TokenStream + Copy,
16    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `ProcMacro::custom_derive`
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0277`.