summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/b18489.d
blob: 2cc386f307ac59992f1e124ebe6ca6d8870a4c07 (plain)
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 () { }