[gcn] install.texi: Update for new ISA targets and their requirements
[gcc.git] / gcc / testsuite / g++.dg / cpp23 / subscript8.C
blobfe000359d4143f50c674c6f82066f5ba3e87218f
1 // DR2507: Allow default arguments
2 // { dg-additional-options {-std=c++23} }
4 struct A
6   void operator[](int, int = 42);
7 };