]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test11656.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test11656.d
1
2 static if (__traits(compiles, __vector(float[4])))
3 {
4 struct Foo
5 {
6 __vector(float[4]) x;
7 }
8 static assert(Foo.x.offsetof == 0);
9 static assert(Foo.x.stringof == "x");
10 }