]> git.lizzy.rs Git - rust.git/commitdiff
test: Remove NOTE assertions from trace_macros-gate
authorAlex Crichton <alex@alexcrichton.com>
Thu, 14 Jul 2016 17:27:56 +0000 (10:27 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 14 Jul 2016 17:27:56 +0000 (10:27 -0700)
If no NOTE assertions are present I believe they aren't asserted at all, and it
looks like the number of NOTEs differs on distcheck vs `make check`, so let's
just remove them all.

Closes #18154

src/test/compile-fail/trace_macros-gate.rs

index e9b7ddf6d1c6cd96928f6523573e3f5d6274081a..d4a7c4ed0e0f9e61b12c614f58606d97f6312850 100644 (file)
@@ -26,6 +26,5 @@ macro_rules! expando {
         ($x: ident) => { trace_macros!($x) } //~ ERROR `trace_macros` is not stable
     }
 
-    expando!(true); //~ NOTE in this expansion
-                    //~^ NOTE in this expansion
+    expando!(true);
 }