summaryrefslogtreecommitdiffstats
path: root/tests/ui/bogus-tag.stderr
blob: 899ff4261ba3bef961b4ffe2bb1db3950f9706b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0599]: no variant or associated item named `Hsl` found for enum `Color` in the current scope
  --> $DIR/bogus-tag.rs:7:16
   |
LL | enum Color { Rgb(isize, isize, isize), Rgba(isize, isize, isize, isize), }
   | ---------- variant or associated item `Hsl` not found for this enum
...
LL |         Color::Hsl(h, s, l) => { println!("hsl"); }
   |                ^^^ variant or associated item not found in `Color`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0599`.