(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
t41.C
// { dg-do assemble  }

struct A {
  struct B {
    B (int);
  };
  static int foop (B);
  int splat () {
    return foop (B (1));
  }
};