-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test for printing attrs on formal params.
- Loading branch information
Showing
2 changed files
with
90 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// force-host | ||
// no-prefer-dynamic | ||
|
||
#![crate_type = "proc-macro"] | ||
|
||
extern crate proc_macro; | ||
|
||
use proc_macro::TokenStream; | ||
|
||
macro_rules! checker { | ||
($attr_name:ident, $expected:literal) => { | ||
#[proc_macro_attribute] | ||
pub fn $attr_name(attr: TokenStream, input: TokenStream) -> TokenStream { | ||
assert!(attr.to_string().is_empty()); | ||
assert_eq!(input.to_string(), $expected); | ||
TokenStream::new() | ||
} | ||
} | ||
} | ||
|
||
checker!(attr_extern, r#"extern "C" { | ||
fn ffi(#[a1] arg1: i32, #[a2] ...); | ||
}"#); | ||
checker!(attr_extern_cvar, r#"unsafe extern "C" fn cvar(arg1: i32, #[a1] mut args: ...) { }"#); | ||
checker!(attr_alias, "type Alias = fn(#[a1] u8, #[a2] ...);"); | ||
checker!(attr_free, "fn free(#[a1] arg1: u8) { let lam = |#[a2] W(x), #[a3] y| (); }"); | ||
checker!(attr_inherent_1, "fn inherent1(#[a1] self, #[a2] arg1: u8) { }"); | ||
checker!(attr_inherent_2, "fn inherent2(#[a1] &self, #[a2] arg1: u8) { }"); | ||
checker!(attr_inherent_3, "fn inherent3<'a>(#[a1] &'a mut self, #[a2] arg1: u8) { }"); | ||
checker!(attr_inherent_4, "fn inherent4<'a>(#[a1] self: Box<Self>, #[a2] arg1: u8) { }"); | ||
checker!(attr_trait_1, "fn trait1(#[a1] self, #[a2] arg1: u8);"); | ||
checker!(attr_trait_2, "fn trait2(#[a1] &self, #[a2] arg1: u8);"); | ||
checker!(attr_trait_3, "fn trait3<'a>(#[a1] &'a mut self, #[a2] arg1: u8);"); | ||
checker!(attr_trait_4, "fn trait4<'a>(#[a1] self: Box<Self>, #[a2] arg1: u8, #[a3] Vec<u8>);"); |
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,56 @@ | ||
// aux-build:param-attrs.rs | ||
|
||
// check-pass | ||
|
||
#![feature(param_attrs)] | ||
#![feature(c_variadic)] | ||
|
||
extern crate param_attrs; | ||
|
||
use param_attrs::*; | ||
|
||
struct W(u8); | ||
|
||
#[attr_extern] | ||
extern "C" { fn ffi(#[a1] arg1: i32, #[a2] ...); } | ||
|
||
#[attr_extern_cvar] | ||
unsafe extern "C" fn cvar(arg1: i32, #[a1] mut args: ...) {} | ||
|
||
#[attr_alias] | ||
type Alias = fn(#[a1] u8, #[a2] ...); | ||
|
||
#[attr_free] | ||
fn free(#[a1] arg1: u8) { | ||
let lam = |#[a2] W(x), #[a3] y| (); | ||
} | ||
|
||
impl W { | ||
#[attr_inherent_1] | ||
fn inherent1(#[a1] self, #[a2] arg1: u8) {} | ||
|
||
#[attr_inherent_2] | ||
fn inherent2(#[a1] &self, #[a2] arg1: u8) {} | ||
|
||
#[attr_inherent_3] | ||
fn inherent3<'a>(#[a1] &'a mut self, #[a2] arg1: u8) {} | ||
|
||
#[attr_inherent_4] | ||
fn inherent4<'a>(#[a1] self: Box<Self>, #[a2] arg1: u8) {} | ||
} | ||
|
||
trait A { | ||
#[attr_trait_1] | ||
fn trait1(#[a1] self, #[a2] arg1: u8); | ||
|
||
#[attr_trait_2] | ||
fn trait2(#[a1] &self, #[a2] arg1: u8); | ||
|
||
#[attr_trait_3] | ||
fn trait3<'a>(#[a1] &'a mut self, #[a2] arg1: u8); | ||
|
||
#[attr_trait_4] | ||
fn trait4<'a>(#[a1] self: Box<Self>, #[a2] arg1: u8, #[a3] Vec<u8>); | ||
} | ||
|
||
fn main() {} |