J2K: Insert initializer type for properties with primitive type if necessary

This commit is contained in:
Natalia Ukhorskaya
2015-12-17 18:01:17 +03:00
parent 188119aa83
commit 1d787ed222
12 changed files with 50 additions and 9 deletions
+11
View File
@@ -0,0 +1,11 @@
class A {
public void foo() {
int i = 1;
byte b = 1;
short s = 1;
long l = 1;
double d = 1.0;
float f = 1.0f;
char c = 1;
}
}