2017-06-29 21:03:19 +02:00
|
|
|
#![feature(intrinsics)]
|
|
|
|
|
extern "rust-intrinsic" {
|
2024-12-01 19:07:13 -08:00
|
|
|
pub static atomic_singlethreadfence_seqcst : unsafe extern "rust-intrinsic" fn();
|
2017-06-29 21:03:19 +02:00
|
|
|
//~^ ERROR intrinsic must be a function [E0622]
|
|
|
|
|
}
|
2024-12-01 19:07:13 -08:00
|
|
|
fn main() { unsafe { atomic_singlethreadfence_seqcst(); } }
|