- remove syntax::{help!, span_help!, span_note!}
- remove unused syntax::{struct_span_fatal, struct_span_err_or_warn!, span_err_or_warn!}
- lintify check_for_bindings_named_same_as_variants + conflicting_repr_hints
- inline syntax::{struct_span_warn!, diagnostic_used!}
- stringify_error_code! -> error_code! & use it more.
- find_plugin_registrar: de-fatalize an error
- de-fatalize metadata errors
- move type_error_struct! to rustc_typeck
- struct_span_err! -> rustc_errors
22 lines
446 B
Rust
22 lines
446 B
Rust
// run-pass
|
|
// ignore-emscripten FIXME(#45351)
|
|
|
|
#![feature(repr_simd, platform_intrinsics)]
|
|
|
|
#[repr(simd)]
|
|
#[derive(Copy, Clone, Debug)]
|
|
pub struct Char3(pub i8, pub i8, pub i8);
|
|
|
|
#[repr(simd)]
|
|
#[derive(Copy, Clone, Debug)]
|
|
pub struct Short3(pub i16, pub i16, pub i16);
|
|
|
|
extern "platform-intrinsic" {
|
|
fn simd_cast<T, U>(x: T) -> U;
|
|
}
|
|
|
|
fn main() {
|
|
let cast: Short3 = unsafe { simd_cast(Char3(10, -3, -9)) };
|
|
|
|
println!("{:?}", cast);
|
|
}
|