]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-26459.rs
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-26459.rs
1 fn main() {
2     match 'a' {
3         char{ch} => true
4         //~^ ERROR expected struct, variant or union type, found builtin type `char`
5     };
6 }