blob: fe000359d4143f50c674c6f82066f5ba3e87218f [file] [log] [blame]
// DR2507: Allow default arguments
// { dg-additional-options {-std=c++23} }
struct A
{
void operator[](int, int = 42);
};