Auto merge of #89752 - matthiaskrgr:rollup-v4fgmwg, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #89579 (Add regression test for issue 80108) - #89632 (Fix docblock code display on mobile) - #89691 (Move `DebuggerCommands` and `check_debugger_output` to a separate module) - #89707 (Apply clippy suggestions for std) - #89722 (Fix spelling: Cannonical -> Canonical) - #89736 (Remove unused CSS rule) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This commit is contained in:
commit
1ddd4e6d7e
15 changed files with 203 additions and 151 deletions
15
src/test/ui/wasm/simd-to-array-80108.rs
Normal file
15
src/test/ui/wasm/simd-to-array-80108.rs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// only-wasm32
|
||||
// compile-flags: --crate-type=lib -Copt-level=2
|
||||
// build-pass
|
||||
#![feature(repr_simd)]
|
||||
|
||||
// Regression test for #80108
|
||||
|
||||
#[repr(simd)]
|
||||
pub struct Vector([i32; 4]);
|
||||
|
||||
impl Vector {
|
||||
pub const fn to_array(self) -> [i32; 4] {
|
||||
self.0
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue