]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/macro/issue-33569.rs
Update tests since ? macro op is supported on 2015.
[rust.git] / src / test / ui / parser / macro / issue-33569.rs
index 83f8a562a03ad4a2ae5b206c1672fb1155de8d58..9ed53519ceb3156a82eb00d9ddb3454e4f7688e2 100644 (file)
@@ -1,7 +1,7 @@
 macro_rules! foo {
     { $+ } => { //~ ERROR expected identifier, found `+`
                 //~^ ERROR missing fragment specifier
-        $(x)(y) //~ ERROR expected `*` or `+`
+        $(x)(y) //~ ERROR expected one of: `*`, `+`, or `?`
     }
 }