[gcn] install.texi: Update for new ISA targets and their requirements
[gcc.git] / gcc / testsuite / g++.dg / cpp23 / explicit-obj-basic7.C
bloba474e97fc184c4a2d95638f0d19988b2d2e997e7
1 // { dg-do compile { target c++23 } }
3 // Shouldn't ICE
4 struct S {
5   void a(this long);
6   void b(this const long);
7   void c(this long unsigned);
8   void c(this signed);
9 };