rust/src/test/ui/issues/issue-26459.rs
2018-12-25 21:08:33 -07:00

7 lines
147 B
Rust

fn main() {
match 'a' {
char{ch} => true
//~^ ERROR expected struct, variant or union type, found builtin type `char`
};
}