]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/suggest-semicolon-for-fn-in-extern-block.fixed
skip if val has ecaping bound vars
[rust.git] / src / test / 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() {}