]> git.proxmox.com Git - rustc.git/blame - src/test/ui-fulldeps/proc-macro/signature.stderr
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / ui-fulldeps / proc-macro / signature.stderr
CommitLineData
ff7c6d11
XL
1error[E0308]: mismatched types
2 --> $DIR/signature.rs:17:1
3 |
0531ce1d
XL
4LL | / pub unsafe extern fn foo(a: i32, b: u32) -> u32 {
5LL | | //~^ ERROR: mismatched types
6LL | | loop {}
7LL | | }
ff7c6d11
XL
8 | |_^ expected normal fn, found unsafe fn
9 |
10 = note: expected type `fn(proc_macro::TokenStream) -> proc_macro::TokenStream`
11 found type `unsafe extern "C" fn(i32, u32) -> u32 {foo}`
12
13error: aborting due to previous error
14
0531ce1d 15For more information about this error, try `rustc --explain E0308`.