about summary refs log tree commit diff
path: root/tests/ui/const-generics/generic_arg_infer/issue-91614.rs
blob: 4a3d85499da81b113f3d2fc5b782982124a00b23 (plain)
1
2
3
4
5
6
7
8
#![feature(portable_simd)]
use std::simd::Mask;

fn main() {
    let y = Mask::<_, _>::splat(false);
    //~^ ERROR: type annotations needed
    //~| ERROR type annotations needed
}