]> git.lizzy.rs Git - rust.git/blob - src/test/ui/bogus-tag.stderr
Various minor/cosmetic improvements to code
[rust.git] / src / test / ui / bogus-tag.stderr
1 error[E0599]: no variant named `hsl` found for type `color` in the current scope
2   --> $DIR/bogus-tag.rs:18:14
3    |
4 LL | enum color { rgb(isize, isize, isize), rgba(isize, isize, isize, isize), }
5    | ---------- variant `hsl` not found here
6 ...
7 LL |       color::hsl(h, s, l) => { println!("hsl"); }
8    |       -------^^^--------- variant not found in `color`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0599`.