rust/src/test/ui/issues/issue-26459.rs
2020-02-02 09:23:47 +09:00

9 lines
182 B
Rust

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