mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
8 lines
122 B
D
8 lines
122 B
D
// REQUIRED_ARGS: -O -m64
|
|
import core.simd;
|
|
|
|
double dot (double2 a) {
|
|
return a.ptr[0] * a.ptr[1];
|
|
}
|
|
|
|
void main () { }
|