mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 21:17:39 +00:00
11 lines
240 B
Rust
11 lines
240 B
Rust
//@ revisions: edition2021 edition2024
|
|
//@[edition2021] edition:2021
|
|
//@[edition2021] check-pass
|
|
//@[edition2024] edition:2024
|
|
|
|
|
|
#[no_mangle] //[edition2024]~ ERROR: unsafe attribute used without unsafe
|
|
extern "C" fn foo() {}
|
|
|
|
fn main() {}
|