rust/tests/ui/suggestions/suggest-variants.rs

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

19 lines
534 B
Rust
Raw Normal View History

2018-11-25 08:23:11 +08:00
#[derive(Debug)]
enum Shape {
Square { size: i32 },
Circle { radius: i32 },
}
struct S {
x: usize,
}
fn main() {
println!("My shape is {:?}", Shape::Squareee { size: 5}); //~ ERROR no variant named `Squareee`
println!("My shape is {:?}", Shape::Circl { size: 5}); //~ ERROR no variant named `Circl`
println!("My shape is {:?}", Shape::Rombus{ size: 5}); //~ ERROR no variant named `Rombus`
2019-04-09 05:58:18 +08:00
Shape::Squareee; //~ ERROR no variant
Shape::Circl; //~ ERROR no variant
Shape::Rombus; //~ ERROR no variant
2018-11-25 08:23:11 +08:00
}