i386: Zero extend 32-bit address to 64-bit with option -mx32 -maddress-mode=long...
[official-gcc.git] / gcc / testsuite / g++.dg / ext / is_constructible3.C
blobc7c58746cd0a5b2d790cf13cbf0ae40b08b55908
1 // PR c++/88368
2 // { dg-do compile { target c++11 } }
4 struct A {
6   struct B {
7     int I = 1;
8     B() = default;
9   };
11   static constexpr bool v = __is_constructible (B);
15 void print()  {
16   A::B BB;