2022-01-02 22:23:31 -08:00
|
|
|
// Regression test for issue #91370.
|
|
|
|
|
|
2024-10-31 11:39:45 +01:00
|
|
|
extern "C" {
|
2022-01-02 22:23:31 -08:00
|
|
|
//~^ `extern` blocks define existing foreign functions
|
|
|
|
|
fn f() {
|
|
|
|
|
//~^ incorrect function inside `extern` block
|
|
|
|
|
//~| cannot have a body
|
|
|
|
|
impl Copy for u8 {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|