mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
13 lines
256 B
Rust
13 lines
256 B
Rust
//@ revisions: edition2021 edition2024
|
|
//@[edition2021] edition:2021
|
|
//@[edition2024] edition:2024
|
|
//@[edition2024] compile-flags: -Zunstable-options
|
|
//@ check-pass
|
|
|
|
#![feature(unsafe_attributes)]
|
|
|
|
#[unsafe(no_mangle)]
|
|
extern "C" fn foo() {}
|
|
|
|
fn main() {}
|