1 2 3 4 5 6 7 8
// REQUIRED_ARGS: -O -m64 import core.simd; double dot (double2 a) { return a.ptr[0] * a.ptr[1]; } void main () { }