/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / nsdmi-aggr11.C
blob09591df380772a3e07053217084363aaf9ad7b05
1 // PR c++/85148
2 // { dg-do compile { target c++14 } }
4 template<typename T> struct A
6   T x[1]{(__PTRDIFF_TYPE__)this};
7 };
9 void foo()
11   A<A<__PTRDIFF_TYPE__>> a{};