Post-review fixes, added support for octal escaping definition for char

This commit is contained in:
Simon Ogorodnik
2016-10-12 12:50:35 +03:00
parent a64c45c9fe
commit 2c99aac5a9
5 changed files with 30 additions and 3 deletions
@@ -0,0 +1,7 @@
public class A {
public char a = '\77';
public char b = '\111';
public char c = '\377';
public char d = '\000';
public char f = '\0';
}