rust/tests/ui/block-result/issue-13624.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
585 B
Rust
Raw Normal View History

mod a {
pub enum Enum {
EnumStructVariant { x: u8, y: u8, z: u8 }
}
pub fn get_enum_struct_variant() -> () {
Enum::EnumStructVariant { x: 1, y: 2, z: 3 }
2015-01-12 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected `()`, found `Enum`
}
}
mod b {
mod test {
use a;
fn test_enum_struct_variant() {
let enum_struct_variant = ::a::get_enum_struct_variant();
match enum_struct_variant {
a::Enum::EnumStructVariant { x, y, z } => {
2015-01-12 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected `()`, found `Enum`
}
}
}
}
}
fn main() {}