forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#52276 - alexcrichton:validate-proc-macro-at…
…tr, r=petrochenkov rustc: Verify #[proc_macro] is only a word ... and perform the same verification for #[proc_macro_attribute], currently neither of these attributes take any arguments. Closes rust-lang#52273
- Loading branch information
Showing
3 changed files
with
78 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// no-prefer-dynamic | ||
|
||
#![crate_type = "proc-macro"] | ||
#![feature(proc_macro)] | ||
|
||
extern crate proc_macro; | ||
|
||
use proc_macro::TokenStream; | ||
|
||
#[proc_macro = "test"] //~ ERROR: does not take any arguments | ||
pub fn a(a: TokenStream) -> TokenStream { a } | ||
|
||
#[proc_macro()] //~ ERROR: does not take any arguments | ||
pub fn c(a: TokenStream) -> TokenStream { a } | ||
|
||
#[proc_macro(x)] //~ ERROR: does not take any arguments | ||
pub fn d(a: TokenStream) -> TokenStream { a } | ||
|
||
#[proc_macro_attribute = "test"] //~ ERROR: does not take any arguments | ||
pub fn e(_: TokenStream, a: TokenStream) -> TokenStream { a } | ||
|
||
#[proc_macro_attribute()] //~ ERROR: does not take any arguments | ||
pub fn g(_: TokenStream, a: TokenStream) -> TokenStream { a } | ||
|
||
#[proc_macro_attribute(x)] //~ ERROR: does not take any arguments | ||
pub fn h(_: TokenStream, a: TokenStream) -> TokenStream { a } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
error: `#[proc_macro]` attribute does not take any arguments | ||
--> $DIR/invalid-attributes.rs:20:1 | ||
| | ||
LL | #[proc_macro = "test"] //~ ERROR: does not take any arguments | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: `#[proc_macro]` attribute does not take any arguments | ||
--> $DIR/invalid-attributes.rs:23:1 | ||
| | ||
LL | #[proc_macro()] //~ ERROR: does not take any arguments | ||
| ^^^^^^^^^^^^^^^ | ||
|
||
error: `#[proc_macro]` attribute does not take any arguments | ||
--> $DIR/invalid-attributes.rs:26:1 | ||
| | ||
LL | #[proc_macro(x)] //~ ERROR: does not take any arguments | ||
| ^^^^^^^^^^^^^^^^ | ||
|
||
error: `#[proc_macro_attribute]` attribute does not take any arguments | ||
--> $DIR/invalid-attributes.rs:29:1 | ||
| | ||
LL | #[proc_macro_attribute = "test"] //~ ERROR: does not take any arguments | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: `#[proc_macro_attribute]` attribute does not take any arguments | ||
--> $DIR/invalid-attributes.rs:32:1 | ||
| | ||
LL | #[proc_macro_attribute()] //~ ERROR: does not take any arguments | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: `#[proc_macro_attribute]` attribute does not take any arguments | ||
--> $DIR/invalid-attributes.rs:35:1 | ||
| | ||
LL | #[proc_macro_attribute(x)] //~ ERROR: does not take any arguments | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 6 previous errors | ||
|