]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/suggest-semicolon-for-fn-in-extern-block.fixed
Rollup merge of #107477 - GuillaumeGomez:css-var, r=notriddle
[rust.git] / tests / ui / suggestions / suggest-semicolon-for-fn-in-extern-block.fixed
1 // run-rustfix
2
3 #[allow(dead_code)]
4
5 extern "C" {
6   fn foo(); //~ERROR expected `;`
7 }
8
9 fn main() {}