From b4611b1ff29d93ba9a03932b316935cbfd076ed9 Mon Sep 17 00:00:00 2001 From: Jeffrey Seyfried Date: Mon, 27 Jun 2016 03:17:55 +0000 Subject: [PATCH] Add regression test --- src/test/compile-fail/macro-with-seps-err-msg.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/compile-fail/macro-with-seps-err-msg.rs b/src/test/compile-fail/macro-with-seps-err-msg.rs index 95250e36b868..408bb15ba28c 100644 --- a/src/test/compile-fail/macro-with-seps-err-msg.rs +++ b/src/test/compile-fail/macro-with-seps-err-msg.rs @@ -8,8 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// error-pattern:expected macro name without module separators - fn main() { - globnar::brotz!(); + globnar::brotz!(); //~ ERROR expected macro name without module separators + ::foo!(); //~ ERROR expected macro name without module separators + foo::!(); //~ ERROR expected macro name without module separators }