Files
rust/tests/ui/foreign/issue-91370-foreign-fn-block-impl.rs

14 lines
371 B
Rust
Raw Normal View History

2022-01-02 22:23:31 -08:00
// Regression test for issue #91370.
2024-10-31 11:39:45 +01:00
extern "C" {
//~^ NOTE `extern` blocks define existing foreign functions
2022-01-02 22:23:31 -08:00
fn f() {
//~^ ERROR incorrect function inside `extern` block
//~| NOTE cannot have a body
//~| NOTE for more information, visit https://doc.rust-lang.org/std/keyword.extern.html
2022-01-02 22:23:31 -08:00
impl Copy for u8 {}
}
}
fn main() {}