2025-06-11 15:30:15 +01:00

9 lines
182 B
Rust

#![feature(portable_simd)]
use std::simd::Mask;
fn main() {
let y = Mask::<_, _>::splat(false);
//~^ ERROR: type annotations needed
//~| ERROR type annotations needed
}