vardec_init.cvc 87 B

12345678
  1. void testVarInits()
  2. {
  3. int a = 3;
  4. int c = 5;
  5. int d = a + c;
  6. int b;
  7. b = a+2;
  8. }