rust/tests/ui/save-analysis/issue-26459.rs
2023-01-11 09:32:08 +00: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`
};
}