2015-10-02 14:41:24 -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-02 14:41:24 -05:00
|
|
|
struct Empty1 {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let e1 = Empty1 {};
|
2016-01-14 05:26:50 -06:00
|
|
|
let xe1 = XEmpty1 {};
|
2015-10-02 14:41:24 -05:00
|
|
|
|
2016-07-29 15:47:55 -05:00
|
|
|
match e1 {
|
2019-10-14 19:20:50 -05:00
|
|
|
Empty1() => () //~ ERROR expected tuple struct or tuple variant, found struct `Empty1`
|
2016-07-29 15:47:55 -05:00
|
|
|
}
|
|
|
|
match xe1 {
|
2019-10-14 19:20:50 -05:00
|
|
|
XEmpty1() => () //~ ERROR expected tuple struct or tuple variant, found struct `XEmpty1`
|
2016-07-29 15:47:55 -05:00
|
|
|
}
|
2015-10-02 14:41:24 -05:00
|
|
|
match e1 {
|
2019-10-14 19:20:50 -05:00
|
|
|
Empty1(..) => () //~ ERROR expected tuple struct or tuple variant, found struct `Empty1`
|
2015-10-02 14:41:24 -05:00
|
|
|
}
|
2016-01-14 05:26:50 -06:00
|
|
|
match xe1 {
|
2019-10-14 19:20:50 -05:00
|
|
|
XEmpty1(..) => () //~ ERROR expected tuple struct or tuple variant, found struct `XEmpty1`
|
2016-01-14 05:26:50 -06:00
|
|
|
}
|
2015-10-02 14:41:24 -05:00
|
|
|
}
|