47 lines
1.3 KiB
Rust
47 lines
1.3 KiB
Rust
![]() |
// Copyright 2016 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.
|
||
|
|
||
|
#![crate_type = "proc-macro"]
|
||
|
#![feature(proc_macro)]
|
||
|
|
||
|
extern crate proc_macro;
|
||
|
|
||
|
#[proc_macro_derive]
|
||
|
//~^ ERROR: attribute must be of form: #[proc_macro_derive(TraitName)]
|
||
|
pub fn foo1(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
|
||
|
input
|
||
|
}
|
||
|
|
||
|
#[proc_macro_derive = "foo"]
|
||
|
//~^ ERROR: attribute must be of form: #[proc_macro_derive(TraitName)]
|
||
|
pub fn foo2(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
|
||
|
input
|
||
|
}
|
||
|
|
||
|
#[proc_macro_derive(
|
||
|
a = "b"
|
||
|
)]
|
||
|
//~^^ ERROR: must only be one word
|
||
|
pub fn foo3(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
|
||
|
input
|
||
|
}
|
||
|
|
||
|
#[proc_macro_derive(b, c)]
|
||
|
//~^ ERROR: attribute must only have one argument
|
||
|
pub fn foo4(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
|
||
|
input
|
||
|
}
|
||
|
|
||
|
#[proc_macro_derive(d(e))]
|
||
|
//~^ ERROR: must only be one word
|
||
|
pub fn foo5(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
|
||
|
input
|
||
|
}
|