]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass-fulldeps/quote-tokens.rs
Imported Upstream version 1.0.0~beta.3
[rustc.git] / src / test / run-pass-fulldeps / quote-tokens.rs
CommitLineData
1a4d82fc 1// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
1a4d82fc
JJ
11// ignore-android
12// ignore-pretty: does not work well with `--test`
223e47cc 13
c34b1796 14#![feature(quote, rustc_private)]
1a4d82fc
JJ
15
16extern crate syntax;
223e47cc 17
970d7e83 18use syntax::ext::base::ExtCtxt;
1a4d82fc 19use syntax::ptr::P;
9346a6ac 20use syntax::parse::PResult;
1a4d82fc
JJ
21
22fn syntax_extension(cx: &ExtCtxt) {
23 let e_toks : Vec<syntax::ast::TokenTree> = quote_tokens!(cx, 1 + 2);
24 let p_toks : Vec<syntax::ast::TokenTree> = quote_tokens!(cx, (x, 1 .. 4, *));
25
26 let a: P<syntax::ast::Expr> = quote_expr!(cx, 1 + 2);
c34b1796 27 let _b: Option<P<syntax::ast::Item>> = quote_item!(cx, static foo : isize = $e_toks; );
1a4d82fc 28 let _c: P<syntax::ast::Pat> = quote_pat!(cx, (x, 1 .. 4, *) );
c34b1796 29 let _d: Option<P<syntax::ast::Stmt>> = quote_stmt!(cx, let x = $a; );
1a4d82fc
JJ
30 let _d: syntax::ast::Arm = quote_arm!(cx, (ref x, ref y) = (x, y) );
31 let _e: P<syntax::ast::Expr> = quote_expr!(cx, match foo { $p_toks => 10 } );
32
33 let _f: P<syntax::ast::Expr> = quote_expr!(cx, ());
34 let _g: P<syntax::ast::Expr> = quote_expr!(cx, true);
35 let _h: P<syntax::ast::Expr> = quote_expr!(cx, 'a');
36
37 let i: Option<P<syntax::ast::Item>> = quote_item!(cx, #[derive(Eq)] struct Foo; );
38 assert!(i.is_some());
223e47cc 39
c34b1796 40 let _l: P<syntax::ast::Ty> = quote_ty!(cx, &isize);
223e47cc 41
c34b1796
AL
42 let _m: Vec<syntax::ast::TokenTree> = quote_matcher!(cx, $($foo:tt,)* bar);
43 let _n: syntax::ast::Attribute = quote_attr!(cx, #![cfg(foo, bar = "baz")]);
44
45 let _o: Option<P<syntax::ast::Item>> = quote_item!(cx, fn foo<T: ?Sized>() {});
223e47cc
LB
46}
47
48fn main() {
49}