]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/bogus-tag.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / bogus-tag.rs
index a629f76d8b3e917b0b4af361e6472d8319970dc6..46536cc85750c67bbb980aebfcac320aedc97608 100644 (file)
@@ -10,7 +10,6 @@
 
 
 enum color { rgb(isize, isize, isize), rgba(isize, isize, isize, isize), }
-//~^ NOTE variant `hsl` not found here
 
 fn main() {
     let red: color = color::rgb(255, 0, 0);
@@ -18,6 +17,5 @@ fn main() {
       color::rgb(r, g, b) => { println!("rgb"); }
       color::hsl(h, s, l) => { println!("hsl"); }
       //~^ ERROR no variant
-      //~| NOTE variant not found in `color`
     }
 }