2015-10-26 13:09:12 -05:00
|
|
|
// Can't use empty braced struct as enum pattern
|
|
|
|
|
2016-01-14 05:26:50 -06:00
|
|
|
// aux-build:empty-struct.rs
|
|
|
|
|
|
|
|
extern crate empty_struct;
|
|
|
|
use empty_struct::*;
|
|
|
|
|
2015-10-26 13:09:12 -05:00
|
|
|
enum E {
|
2016-01-14 05:26:50 -06:00
|
|
|
Empty3 {}
|
2015-10-26 13:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-01-14 05:26:50 -06:00
|
|
|
let e3 = E::Empty3 {};
|
|
|
|
let xe3 = XE::XEmpty3 {};
|
2015-10-26 13:09:12 -05:00
|
|
|
|
2016-07-29 15:47:55 -05:00
|
|
|
match e3 {
|
2016-09-14 16:51:46 -05:00
|
|
|
E::Empty3() => ()
|
|
|
|
//~^ ERROR expected tuple struct/variant, found struct variant `E::Empty3`
|
2016-07-29 15:47:55 -05:00
|
|
|
}
|
|
|
|
match xe3 {
|
2016-09-14 16:51:46 -05:00
|
|
|
XE::XEmpty3() => ()
|
|
|
|
//~^ ERROR expected tuple struct/variant, found struct variant `XE::XEmpty3`
|
2016-07-29 15:47:55 -05:00
|
|
|
}
|
2016-01-14 05:26:50 -06:00
|
|
|
match e3 {
|
2016-09-14 16:51:46 -05:00
|
|
|
E::Empty3(..) => ()
|
|
|
|
//~^ ERROR expected tuple struct/variant, found struct variant `E::Empty3`
|
2016-01-14 05:26:50 -06:00
|
|
|
}
|
|
|
|
match xe3 {
|
2016-09-14 16:51:46 -05:00
|
|
|
XE::XEmpty3(..) => ()
|
|
|
|
//~^ ERROR expected tuple struct/variant, found struct variant `XE::XEmpty3
|
2015-10-26 13:09:12 -05:00
|
|
|
}
|
|
|
|
}
|