1// PR c++/5636
2// Bug: the named return value optimization interfered with EH cleanups.
3
4// Split into pieces for binary compatibility testing October 2002
5
6extern void nrv1_x (void);
7
8int
9main ()
10{
11  nrv1_x ();
12}
13