c++: Don't ICE to build private access error message [PR116323]
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / decl1.C
blob6262bf307df709134abbf24cea111ae3666a9050
1 // { dg-do assemble  }
2 // Based on a test case by Phil Blecker <tmwg@inxservices.com>
5 int foo(int);
6 int bar() {
7   int baz(int(foo(0)));
8   int foo = baz;
9   return 0;