Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// compile-flags: -Zsave-analysis
fn main() {
match 'a' {
char{ch} => true
//~^ ERROR expected struct, variant or union type, found builtin type `char`
};
}