(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
defarg17.C
typedef int I;

int f(float I = 0.0, int b = I(2)); // { dg-error "parameter" }
int g(int b = I(2), float I = 0.0);

struct A
{
  int f(float I = 0.0, int b = I(2)); // { dg-error "parameter" }
  int g(int b = I(2), float I = 0.0);
};