1 #include "empty6.h"
2 
3 extern void empty6_y (B&);
4 
empty6_x()5 void empty6_x ()
6 {
7   B b;
8 
9   b.i = 7;
10 
11   empty6_y (b);
12 }
13