2020-02-02 09:23:47 +09:00
|
|
|
// compile-flags: -Zsave-analysis
|
|
|
|
|
|
2015-10-24 17:29:13 -04:00
|
|
|
fn main() {
|
|
|
|
|
match 'a' {
|
|
|
|
|
char{ch} => true
|
2016-09-15 00:51:46 +03:00
|
|
|
//~^ ERROR expected struct, variant or union type, found builtin type `char`
|
2015-10-24 17:29:13 -04:00
|
|
|
};
|
|
|
|
|
}
|