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::parse;
|
|
|
|
use syntax::print::pprust;
|
2016-06-21 17:08:13 -05:00
|
|
|
use syntax_pos::DUMMY_SP;
|
2015-04-23 11:33:53 -05:00
|
|
|
|
|
|
|
fn main() {
|
2015-05-13 15:00:17 -05:00
|
|
|
let ps = syntax::parse::ParseSess::new();
|
2016-06-10 20:37:24 -05:00
|
|
|
let mut loader = syntax::ext::base::DummyMacroLoader;
|
2015-04-26 00:09:36 -05:00
|
|
|
let mut cx = syntax::ext::base::ExtCtxt::new(
|
|
|
|
&ps, vec![],
|
2015-07-13 19:10:44 -05:00
|
|
|
syntax::ext::expand::ExpansionConfig::default("qquote".to_string()),
|
2016-06-10 20:37:24 -05:00
|
|
|
&mut loader);
|
2015-04-26 00:09:36 -05:00
|
|
|
cx.bt_push(syntax::codemap::ExpnInfo {
|
|
|
|
call_site: DUMMY_SP,
|
|
|
|
callee: syntax::codemap::NameAndSpan {
|
2015-08-26 19:11:53 -05:00
|
|
|
format: syntax::codemap::MacroBang(parse::token::intern("")),
|
2015-04-26 00:09:36 -05:00
|
|
|
allow_internal_unstable: false,
|
|
|
|
span: None,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
let cx = &mut cx;
|
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;);
|
|
|
|
assert_eq!(pprust::expr_to_string(&*expr), "let x isize = 20;");
|
|
|
|
}
|