Sign in
fuchsia
/
third_party
/
rust
/
2fcea9fb68c8e04f10e5cb15bbfb486de9800afa
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
empty_loop_intrinsic.rs
blob: a550e5609658dd09a29380b1d52dc6dcad0d709d [
file
] [
log
] [
blame
]
//@check-pass
#![
warn
(
clippy
::
empty_loop
)]
#![
feature
(
intrinsics
)]
#![
feature
(
rustc_attrs
)]
// From issue #15200
#[
rustc_intrinsic
]
#[
rustc_nounwind
]
/// # Safety
pub
const
unsafe
fn
simd_insert
<
T
,
U
>(
x
:
T
,
idx
:
u32
,
val
:
U
)
->
T
;
fn
main
()
{}