local-vars.cpp 80 B

12345678
  1. int foo()
  2. {
  3. int x;
  4. double y = 2;
  5. double z = x + y;
  6. return z;
  7. }