void testVarInits() { int a = 3; int c = 5; int d = a + c; int b; b = a+2; }