| 1 | export fn entry() void { |
| 2 | const a = @Vector(4, u32){ 1, 1, 1, 1 }; |
| 3 | _ = @as(u32, @intCast(a)); |
| 4 | } |
| 5 | |
| 6 | // TODO: change target in the manifest to "native" probably after this is fixed: |
| 7 | // https://github.com/ziglang/zig/issues/13782 |
| 8 | |
| 9 | // error |
| 10 | // target=x86_64-linux |
| 11 | // |
| 12 | // :3:27: error: expected type 'u32', found '@Vector(4, u32)' |