2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / complex6.C
blobbedb3ed5ffaf5ee1f4a5910597646de844886894
1 // PR 30168
2 // { dg-do compile }
3 // { dg-options "-O2" }
5 struct aaa
7       aaa(_Complex float __z) ;
8       _Complex float _M_value;
9 };
10 aaa::aaa(_Complex float __z)
12   __z*=2.0f;
13   _M_value = __z;