rust/src/test/ui/bogus-tag.stderr

13 lines
462 B
Plaintext
Raw Normal View History

error[E0599]: no variant named `Hsl` found for type `Color` in the current scope
--> $DIR/bogus-tag.rs:7:16
|
LL | enum Color { Rgb(isize, isize, isize), Rgba(isize, isize, isize, isize), }
| ---------- variant `Hsl` not found here
...
2018-12-07 18:15:36 +00:00
LL | Color::Hsl(h, s, l) => { println!("hsl"); }
2019-03-10 23:20:15 +00:00
| ^^^ variant not found in `Color`
error: aborting due to previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0599`.