]> git.proxmox.com Git - rustc.git/blob - src/test/ui/hygiene/unpretty-debug.stdout
New upstream version 1.38.0+dfsg1
[rustc.git] / src / test / ui / hygiene / unpretty-debug.stdout
1 // check-pass
2 // compile-flags: -Zunpretty=expanded,hygiene
3
4 // Don't break whenever Symbol numbering changes
5 // normalize-stdout-test "\d+#" -> "0#"
6
7 // minimal junk
8 #![feature /* 0#0 */(no_core)]
9 #![no_core /* 0#0 */]
10
11 macro_rules! foo /* 0#0 */ { ($ x : ident) => { y + $ x } }
12
13 fn bar /* 0#0 */() { let x /* 0#0 */ = 1; y /* 0#1 */ + x /* 0#0 */ }
14
15 fn y /* 0#0 */() { }