]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/bogus-tag.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / bogus-tag.stderr
index d57c5cbde5ff2767e054e2f4f2183f04eca98b74..f9917b07f070b172737b2059c6b28413bfbe5cd1 100644 (file)
@@ -1,12 +1,12 @@
 error[E0599]: no variant named `hsl` found for type `color` in the current scope
   --> $DIR/bogus-tag.rs:18:7
    |
-12 | enum color { rgb(isize, isize, isize), rgba(isize, isize, isize, isize), }
+LL | enum color { rgb(isize, isize, isize), rgba(isize, isize, isize, isize), }
    | ---------- variant `hsl` not found here
 ...
-18 |       color::hsl(h, s, l) => { println!("hsl"); }
+LL |       color::hsl(h, s, l) => { println!("hsl"); }
    |       ^^^^^^^^^^^^^^^^^^^ variant not found in `color`
 
 error: aborting due to previous error
 
-If you want more information on this error, try using "rustc --explain E0599"
+For more information about this error, try `rustc --explain E0599`.