]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/macro-backtrace-println.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / macro-backtrace-println.rs
index 294892662d46480d24d383190fc3920214469243..a485b9056de26980d10ffd2ca0193caf2305a5fc 100644 (file)
@@ -22,7 +22,8 @@ macro_rules! myprint {
 
 macro_rules! myprintln {
     ($fmt:expr) => (myprint!(concat!($fmt, "\n"))); //~ ERROR invalid reference to argument `0`
-                                                    //~^ NOTE in this expansion of
+                                                    //~^ NOTE in this expansion of myprint!
+                                                    //~^^ NOTE in this expansion of concat!
 }
 
 fn main() {