mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
234 B
Rust
11 lines
234 B
Rust
// This tests makes sure the diagnostics print the offending enum variant, not just the type.
|
|
pub enum Enum {
|
|
V1(i32),
|
|
}
|
|
|
|
pub fn foo(x: i32) -> Enum {
|
|
Enum::V1 { x } //~ ERROR `Enum::V1` has no field named `x`
|
|
}
|
|
|
|
fn main() {}
|