2023-01-03 13:08:20 +00:00
|
|
|
error: mismatched function-like proc macro signature
|
2023-01-19 15:31:50 +00:00
|
|
|
--> $DIR/signature-proc-macro.rs:10:25
|
2023-01-03 13:08:20 +00:00
|
|
|
|
|
|
|
|
LL | pub fn bad_input(input: String) -> TokenStream {
|
|
|
|
| ^^^^^^ found std::string::String, expected type `proc_macro::TokenStream`
|
|
|
|
|
|
|
|
|
= note: function-like proc macros must have a signature of `fn(TokenStream) -> TokenStream`
|
|
|
|
|
|
|
|
error: mismatched function-like proc macro signature
|
2023-01-19 15:31:50 +00:00
|
|
|
--> $DIR/signature-proc-macro.rs:16:42
|
2023-01-03 13:08:20 +00:00
|
|
|
|
|
|
|
|
LL | pub fn bad_output(input: TokenStream) -> String {
|
|
|
|
| ^^^^^^ found std::string::String, expected type `proc_macro::TokenStream`
|
|
|
|
|
|
|
|
|
= note: function-like proc macros must have a signature of `fn(TokenStream) -> TokenStream`
|
|
|
|
|
|
|
|
error: mismatched function-like proc macro signature
|
2023-01-19 15:31:50 +00:00
|
|
|
--> $DIR/signature-proc-macro.rs:22:41
|
2023-01-03 13:08:20 +00:00
|
|
|
|
|
|
|
|
LL | pub fn bad_everything(input: String) -> String {
|
|
|
|
| ^^^^^^ found std::string::String, expected type `proc_macro::TokenStream`
|
|
|
|
|
|
|
|
|
= note: function-like proc macros must have a signature of `fn(TokenStream) -> TokenStream`
|
|
|
|
|
|
|
|
error: mismatched function-like proc macro signature
|
2023-01-19 15:31:50 +00:00
|
|
|
--> $DIR/signature-proc-macro.rs:22:30
|
2023-01-03 13:08:20 +00:00
|
|
|
|
|
|
|
|
LL | pub fn bad_everything(input: String) -> String {
|
|
|
|
| ^^^^^^ found std::string::String, expected type `proc_macro::TokenStream`
|
|
|
|
|
|
|
|
|
= note: function-like proc macros must have a signature of `fn(TokenStream) -> TokenStream`
|
|
|
|
|
|
|
|
error: mismatched function-like proc macro signature
|
2023-01-19 15:31:50 +00:00
|
|
|
--> $DIR/signature-proc-macro.rs:29:33
|
2023-01-03 13:08:20 +00:00
|
|
|
|
|
|
|
|
LL | pub fn too_many(a: TokenStream, b: TokenStream, c: String) -> TokenStream {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ found unexpected arguments
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|