Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
save-analysis
/
issue-26459.rs
blob: 2ba05a0a47e01dd9590b61f106d840f7f78e8f70 [
file
]
// compile-flags: -Zsave-analysis
fn
main
()
{
match
'a'
{
char
{
ch
}
=>
true
//~^ ERROR expected struct, variant or union type, found builtin type `char`
};
}