Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
atomic-from-mut-not-available.rs
blob: 8326187838a2099d2b9c34ada0786dc9bf254323 [
file
] [
log
] [
blame
] [
edit
]
//@ only-x86
//@ only-linux
fn
main
()
{
core
::
sync
::
atomic
::
AtomicU64
::
from_mut
(&
mut
0u64
);
//~^ ERROR: no function or associated item named `from_mut` found for struct `AtomicU64`
}