/cp
[official-gcc.git] / gcc / testsuite / g++.dg / overload / defarg7.C
blob8cc08f538693b6f741386f0ee7463d2da17a0c8b
1 struct A
3   A(const char *);
4   explicit A(const int *);
5 };
7 void f (A a = 0);
9 int main()
11   f();