Listing 4

int &f()
   {
   int i;
   ...
   return i;
   }
...
f() = 2;

// End of File