about summary refs log tree commit diff
path: root/src/test/ui/parser/macro
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-03-09 15:03:44 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-03-11 23:10:26 +0300
commitfa72a81bea27f1fda4287475e4cc2f684c971e7f (patch)
treee691a2e38d57c5cd37932754ddf1d8a7048f1f54 /src/test/ui/parser/macro
parent2060d49c39e41a286b0425cb2f7ba6022a2d4b96 (diff)
downloadrust-fa72a81bea27f1fda4287475e4cc2f684c971e7f.tar.gz
rust-fa72a81bea27f1fda4287475e4cc2f684c971e7f.zip
Update tests
Diffstat (limited to 'src/test/ui/parser/macro')
-rw-r--r--src/test/ui/parser/macro/issue-33569.stderr6
-rw-r--r--src/test/ui/parser/macro/issue-37113.stderr2
-rw-r--r--src/test/ui/parser/macro/issue-37234.stderr2
-rw-r--r--src/test/ui/parser/macro/macro-incomplete-parse.stderr6
-rw-r--r--src/test/ui/parser/macro/macro-repeat.stderr2
-rw-r--r--src/test/ui/parser/macro/pub-item-macro.stderr4
-rw-r--r--src/test/ui/parser/macro/trait-object-macro-matcher.stderr2
7 files changed, 12 insertions, 12 deletions
diff --git a/src/test/ui/parser/macro/issue-33569.stderr b/src/test/ui/parser/macro/issue-33569.stderr
index 213d72363f5..8ba72fc8886 100644
--- a/src/test/ui/parser/macro/issue-33569.stderr
+++ b/src/test/ui/parser/macro/issue-33569.stderr
@@ -1,19 +1,19 @@
 error: expected identifier, found `+`
   --> $DIR/issue-33569.rs:2:8
    |
-LL |     { $+ } => { //~ ERROR expected identifier, found `+`
+LL |     { $+ } => {
    |        ^
 
 error: expected `*` or `+`
   --> $DIR/issue-33569.rs:4:13
    |
-LL |         $(x)(y) //~ ERROR expected `*` or `+`
+LL |         $(x)(y)
    |             ^^^
 
 error: missing fragment specifier
   --> $DIR/issue-33569.rs:2:8
    |
-LL |     { $+ } => { //~ ERROR expected identifier, found `+`
+LL |     { $+ } => {
    |        ^
 
 error: aborting due to 3 previous errors
diff --git a/src/test/ui/parser/macro/issue-37113.stderr b/src/test/ui/parser/macro/issue-37113.stderr
index 36589667c4b..7aadc0aa4b5 100644
--- a/src/test/ui/parser/macro/issue-37113.stderr
+++ b/src/test/ui/parser/macro/issue-37113.stderr
@@ -1,7 +1,7 @@
 error: expected identifier, found `String`
   --> $DIR/issue-37113.rs:4:16
    |
-LL |             $( $t, )* //~ ERROR expected identifier, found `String`
+LL |             $( $t, )*
    |                ^^ expected identifier
 ...
 LL |     test_macro!(String,);
diff --git a/src/test/ui/parser/macro/issue-37234.stderr b/src/test/ui/parser/macro/issue-37234.stderr
index dcc24fca5cc..004de9d905f 100644
--- a/src/test/ui/parser/macro/issue-37234.stderr
+++ b/src/test/ui/parser/macro/issue-37234.stderr
@@ -1,7 +1,7 @@
 error: expected one of `.`, `;`, `?`, or an operator, found `""`
   --> $DIR/issue-37234.rs:3:19
    |
-LL |         let x = 5 ""; //~ ERROR found `""`
+LL |         let x = 5 "";
    |                   ^^ expected one of `.`, `;`, `?`, or an operator here
 ...
 LL |     failed!();
diff --git a/src/test/ui/parser/macro/macro-incomplete-parse.stderr b/src/test/ui/parser/macro/macro-incomplete-parse.stderr
index 3fcc8e08520..b37bd583060 100644
--- a/src/test/ui/parser/macro/macro-incomplete-parse.stderr
+++ b/src/test/ui/parser/macro/macro-incomplete-parse.stderr
@@ -1,7 +1,7 @@
 error: macro expansion ignores token `,` and any following
   --> $DIR/macro-incomplete-parse.rs:7:9
    |
-LL |         , //~ ERROR macro expansion ignores token `,`
+LL |         ,
    |         ^
 ...
 LL | ignored_item!();
@@ -12,7 +12,7 @@ LL | ignored_item!();
 error: expected one of `.`, `;`, `?`, `}`, or an operator, found `,`
   --> $DIR/macro-incomplete-parse.rs:12:14
    |
-LL |     () => ( 1,  //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `,`
+LL |     () => ( 1,
    |              ^ expected one of `.`, `;`, `?`, `}`, or an operator here
 ...
 LL |     ignored_expr!();
@@ -21,7 +21,7 @@ LL |     ignored_expr!();
 error: macro expansion ignores token `,` and any following
   --> $DIR/macro-incomplete-parse.rs:18:14
    |
-LL |     () => ( 1, 2 ) //~ ERROR macro expansion ignores token `,`
+LL |     () => ( 1, 2 )
    |              ^
 ...
 LL |         ignored_pat!() => (),
diff --git a/src/test/ui/parser/macro/macro-repeat.stderr b/src/test/ui/parser/macro/macro-repeat.stderr
index 310d60c8dbd..c86684de744 100644
--- a/src/test/ui/parser/macro/macro-repeat.stderr
+++ b/src/test/ui/parser/macro/macro-repeat.stderr
@@ -1,7 +1,7 @@
 error: variable 'v' is still repeating at this depth
   --> $DIR/macro-repeat.rs:3:9
    |
-LL |         $v  //~ ERROR still repeating at this depth
+LL |         $v
    |         ^^
 
 error: aborting due to previous error
diff --git a/src/test/ui/parser/macro/pub-item-macro.stderr b/src/test/ui/parser/macro/pub-item-macro.stderr
index a624d574c45..fa25161ab50 100644
--- a/src/test/ui/parser/macro/pub-item-macro.stderr
+++ b/src/test/ui/parser/macro/pub-item-macro.stderr
@@ -1,7 +1,7 @@
 error: can't qualify macro invocation with `pub`
   --> $DIR/pub-item-macro.rs:8:5
    |
-LL |     pub priv_x!(); //~ ERROR can't qualify macro invocation with `pub`
+LL |     pub priv_x!();
    |     ^^^
 ...
 LL |     pub_x!();
@@ -12,7 +12,7 @@ LL |     pub_x!();
 error[E0603]: static `x` is private
   --> $DIR/pub-item-macro.rs:17:23
    |
-LL |     let y: u32 = foo::x; //~ ERROR static `x` is private
+LL |     let y: u32 = foo::x;
    |                       ^
 
 error: aborting due to 2 previous errors
diff --git a/src/test/ui/parser/macro/trait-object-macro-matcher.stderr b/src/test/ui/parser/macro/trait-object-macro-matcher.stderr
index 185a9e71809..19c5c82f82c 100644
--- a/src/test/ui/parser/macro/trait-object-macro-matcher.stderr
+++ b/src/test/ui/parser/macro/trait-object-macro-matcher.stderr
@@ -1,7 +1,7 @@
 error: expected type, found `'static`
   --> $DIR/trait-object-macro-matcher.rs:9:8
    |
-LL |     m!('static); //~ ERROR expected type, found `'static`
+LL |     m!('static);
    |        ^^^^^^^
 
 error: aborting due to previous error