]> git.lizzy.rs Git - rust.git/commitdiff
Fix test expectations because of #28439
authorSimonas Kazlauskas <git@kazlauskas.me>
Thu, 17 Sep 2015 09:47:03 +0000 (12:47 +0300)
committerSimonas Kazlauskas <git@kazlauskas.me>
Thu, 17 Sep 2015 09:47:03 +0000 (12:47 +0300)
src/test/compile-fail/issue-28433.rs

index ab0708c28aef69fd991d4a041c5acd6e616325a5..3ca2213087d1f543f3608c1b3fd02274c3fab1c9 100644 (file)
@@ -9,7 +9,9 @@
 // except according to those terms.
 
 enum bird {
-    pub duck, //~ ERROR: expected identifier, found keyword `pub`
+    pub duck,
+    //~^ ERROR: expected identifier, found keyword `pub`
+    //~^^ ERROR: expected
     goose
 }