2015-10-02 19:41:24 +00:00
|
|
|
// Can't use empty braced struct as enum pattern
|
|
|
|
|
2016-01-14 11:26:50 +00:00
|
|
|
// aux-build:empty-struct.rs
|
|
|
|
|
|
|
|
extern crate empty_struct;
|
|
|
|
use empty_struct::*;
|
|
|
|
|
2015-10-02 19:41:24 +00:00
|
|
|
struct Empty1 {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let e1 = Empty1 {};
|
2016-01-14 11:26:50 +00:00
|
|
|
let xe1 = XEmpty1 {};
|
2015-10-02 19:41:24 +00:00
|
|
|
|
2016-07-29 20:47:55 +00:00
|
|
|
match e1 {
|
2019-10-15 00:20:50 +00:00
|
|
|
Empty1() => () //~ ERROR expected tuple struct or tuple variant, found struct `Empty1`
|
2016-07-29 20:47:55 +00:00
|
|
|
}
|
|
|
|
match xe1 {
|
2019-10-15 00:20:50 +00:00
|
|
|
XEmpty1() => () //~ ERROR expected tuple struct or tuple variant, found struct `XEmpty1`
|
2016-07-29 20:47:55 +00:00
|
|
|
}
|
2015-10-02 19:41:24 +00:00
|
|
|
match e1 {
|
2019-10-15 00:20:50 +00:00
|
|
|
Empty1(..) => () //~ ERROR expected tuple struct or tuple variant, found struct `Empty1`
|
2015-10-02 19:41:24 +00:00
|
|
|
}
|
2016-01-14 11:26:50 +00:00
|
|
|
match xe1 {
|
2019-10-15 00:20:50 +00:00
|
|
|
XEmpty1(..) => () //~ ERROR expected tuple struct or tuple variant, found struct `XEmpty1`
|
2016-01-14 11:26:50 +00:00
|
|
|
}
|
2015-10-02 19:41:24 +00:00
|
|
|
}
|