1error[E0599]: no variant or associated item named `Hsl` found for enum `Color` in the current scope
2  --> $DIR/bogus-tag.rs:7:16
3   |
4LL | enum Color { Rgb(isize, isize, isize), Rgba(isize, isize, isize, isize), }
5   | ---------- variant or associated item `Hsl` not found here
6...
7LL |         Color::Hsl(h, s, l) => { println!("hsl"); }
8   |                ^^^ variant or associated item not found in `Color`
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0599`.
13