1 // See comments in -v1.c file.
2 struct ops {
3   int changed_var;
changed_fnops4   virtual int changed_fn() { return 0; }
5   int deleted_var;
deleted_fnops6   virtual int deleted_fn() { return 0; }
7 };
8 
reg(ops & x)9 void reg(ops& x) {
10   ops instantiate = x;
11   (void) instantiate;
12 }
13