2015-04-23 11:33:53 -05:00
|
|
|
// Copyright 2012-2014 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.
|
|
|
|
|
|
|
|
// ignore-cross-compile
|
|
|
|
|
2016-01-26 02:23:28 -06:00
|
|
|
// error-pattern:expected expression, found statement (`let`)
|
2015-04-23 11:33:53 -05:00
|
|
|
|
|
|
|
#![feature(quote, rustc_private)]
|
|
|
|
|
|
|
|
extern crate syntax;
|
2016-06-24 05:31:19 -05:00
|
|
|
extern crate syntax_pos;
|
2015-04-23 11:33:53 -05:00
|
|
|
|
|
|
|
use syntax::ast;
|
2016-06-21 17:08:13 -05:00
|
|
|
use syntax::codemap;
|
2015-04-23 11:33:53 -05:00
|
|
|
use syntax::print::pprust;
|
2016-11-17 08:04:36 -06:00
|
|
|
use syntax::symbol::Symbol;
|
2016-06-21 17:08:13 -05:00
|
|
|
use syntax_pos::DUMMY_SP;
|
2015-04-23 11:33:53 -05:00
|
|
|
|
|
|
|
fn main() {
|
2017-04-24 12:01:19 -05:00
|
|
|
let ps = syntax::parse::ParseSess::new(codemap::FilePathMapping::empty());
|
2016-09-04 22:46:05 -05:00
|
|
|
let mut resolver = syntax::ext::base::DummyResolver;
|
2015-04-26 00:09:36 -05:00
|
|
|
let mut cx = syntax::ext::base::ExtCtxt::new(
|
2016-10-27 01:36:56 -05:00
|
|
|
&ps,
|
2015-07-13 19:10:44 -05:00
|
|
|
syntax::ext::expand::ExpansionConfig::default("qquote".to_string()),
|
2016-09-04 22:46:05 -05:00
|
|
|
&mut resolver);
|
2015-04-26 00:09:36 -05:00
|
|
|
let cx = &mut cx;
|
2015-04-23 11:33:53 -05:00
|
|
|
|
2016-08-17 09:20:04 -05:00
|
|
|
println!("{}", pprust::expr_to_string(&*quote_expr!(&cx, 23)));
|
2015-04-23 11:33:53 -05:00
|
|
|
assert_eq!(pprust::expr_to_string(&*quote_expr!(&cx, 23)), "23");
|
|
|
|
|
|
|
|
let expr = quote_expr!(&cx, let x isize = 20;);
|
2016-08-17 09:20:04 -05:00
|
|
|
println!("{}", pprust::expr_to_string(&*expr));
|
2015-04-23 11:33:53 -05:00
|
|
|
assert_eq!(pprust::expr_to_string(&*expr), "let x isize = 20;");
|
|
|
|
}
|