blob: 79791e0e06ad568b66b26277fb48b1b86c0a874e [file] [log] [blame]
fn main() {
match 'a' {
char{ch} => true
//~^ ERROR expected struct, variant or union type, found builtin type `char`
};
}