2020-01-08 10:05:31 -06:00
|
|
|
error[E0599]: no variant or associated item named `Hsl` found for enum `Color` in the current scope
|
2018-12-26 10:38:35 -06:00
|
|
|
--> $DIR/bogus-tag.rs:7:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | enum Color { Rgb(isize, isize, isize), Rgba(isize, isize, isize, isize), }
|
2022-07-01 18:47:26 -05:00
|
|
|
| ---------- variant or associated item `Hsl` not found for this enum
|
2017-12-10 13:47:55 -06:00
|
|
|
...
|
2018-12-07 12:15:36 -06:00
|
|
|
LL | Color::Hsl(h, s, l) => { println!("hsl"); }
|
2019-04-08 16:58:18 -05:00
|
|
|
| ^^^ variant or associated item not found in `Color`
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0599`.
|