2019-07-15 21:26:45 +00:00
|
|
|
// check-pass
|
|
|
|
// compile-flags: -Zunpretty=expanded,hygiene
|
|
|
|
|
|
|
|
// Don't break whenever Symbol numbering changes
|
|
|
|
// normalize-stdout-test "\d+#" -> "0#"
|
|
|
|
|
2014-08-11 12:01:37 +00:00
|
|
|
// minimal junk
|
2019-07-13 21:11:59 +00:00
|
|
|
#![feature /* 0#0 */(no_core)]
|
|
|
|
#![no_core /* 0#0 */]
|
2014-08-11 12:01:37 +00:00
|
|
|
|
2019-07-14 13:09:39 +00:00
|
|
|
macro_rules! foo /* 0#0 */ { ($ x : ident) => { y + $ x } }
|
2014-08-11 12:01:37 +00:00
|
|
|
|
2020-07-08 01:04:10 +00:00
|
|
|
fn bar /* 0#0 */() {
|
|
|
|
let x /* 0#0 */ = 1;
|
|
|
|
y /* 0#1 */ + x /* 0#0 */
|
|
|
|
}
|
2016-05-08 04:18:55 +00:00
|
|
|
|
2019-07-13 21:11:59 +00:00
|
|
|
fn y /* 0#0 */() { }
|
2019-07-14 20:17:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Expansions:
|
2020-06-24 17:16:36 +00:00
|
|
|
0: parent: ExpnId(0), call_site_ctxt: #0, def_site_ctxt: #0, kind: Root
|
2021-05-09 01:33:04 +00:00
|
|
|
1: parent: ExpnId(0), call_site_ctxt: #0, def_site_ctxt: #0, kind: Macro { kind: Bang, name: "foo", proc_macro: false }
|
2019-07-14 20:17:37 +00:00
|
|
|
|
|
|
|
SyntaxContexts:
|
|
|
|
#0: parent: #0, outer_mark: (ExpnId(0), Opaque)
|
|
|
|
#1: parent: #0, outer_mark: (ExpnId(1), SemiTransparent)
|
|
|
|
*/
|