Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
test17337.d
blob: f817eb7d2e89a78d9b1d71814f549a8eccd329fc [
file
] [
log
] [
blame
]
// REQUIRED_ARGS: -mcpu=native
static
if
(
__traits
(
compiles
,
__vector
(
ubyte
[
16
])))
{
alias
ubyte16
=
__vector
(
ubyte
[
16
]);
ubyte16 bug
(
ubyte val
)
{
immutable ubyte16 a
=
0
,
b
=
val
;
return
b
;
}
void
main
()
{
bug
(
0
);
}
}
else
{
void
main
()
{
}
}