Add regression test.
This commit is contained in:
parent
11195676a0
commit
67eeb0a720
2 changed files with 51 additions and 0 deletions
24
src/test/run-pass-fulldeps/proc-macro/auxiliary/double.rs
Normal file
24
src/test/run-pass-fulldeps/proc-macro/auxiliary/double.rs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
// 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.
|
||||
|
||||
// no-prefer-dynamic
|
||||
|
||||
#![crate_type = "proc-macro"]
|
||||
#![feature(proc_macro)]
|
||||
#![feature(proc_macro_lib)]
|
||||
|
||||
extern crate proc_macro;
|
||||
|
||||
use proc_macro::TokenStream;
|
||||
|
||||
#[proc_macro_derive(Double)]
|
||||
pub fn derive(input: TokenStream) -> TokenStream {
|
||||
format!("mod foo {{ {} }}", input.to_string()).parse().unwrap()
|
||||
}
|
||||
27
src/test/run-pass-fulldeps/proc-macro/crate-var.rs
Normal file
27
src/test/run-pass-fulldeps/proc-macro/crate-var.rs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
// 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.
|
||||
|
||||
// aux-build:double.rs
|
||||
|
||||
#![feature(proc_macro)]
|
||||
#![allow(unused)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate double;
|
||||
|
||||
struct Foo;
|
||||
|
||||
macro_rules! m { () => {
|
||||
#[derive(Double)]
|
||||
struct Bar($crate::Foo);
|
||||
} }
|
||||
m!();
|
||||
|
||||
fn main() {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue