rust/src/test/ui/error-codes/E0599.rs
2018-12-25 21:08:33 -07:00

6 lines
86 B
Rust

struct Foo;
fn main() {
|| if let Foo::NotEvenReal() = Foo {}; //~ ERROR E0599
}