(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
test16381.d
/*
REQUIRED_ARGS: -m64
TEST_OUTPUT:
---
fail_compilation/test16381.d(15): Error: `foo()` is not an lvalue and cannot be modified
---
*/

// https://issues.dlang.org/show_bug.cgi?id=16381

__vector(float[4]) foo();

void bar()
{
    float g = foo().ptr[0];
}