2021-12-13 03:16:00 +00:00
|
|
|
#![feature(portable_simd)]
|
|
|
|
|
use std::simd::Mask;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let y = Mask::<_, _>::splat(false);
|
2024-05-29 17:06:50 +01:00
|
|
|
//~^ ERROR: type annotations needed
|
2024-06-17 08:34:26 +00:00
|
|
|
//~| ERROR type annotations needed
|
2021-12-13 03:16:00 +00:00
|
|
|
}
|