New Java parser (incomplete method declaration parsing fixed)

This commit is contained in:
Roman Shevchenko
2010-08-10 13:49:17 +04:00
parent 7ef86f0291
commit 64e637cb92
6 changed files with 93 additions and 3 deletions
@@ -0,0 +1,9 @@
// illegal modifier combinations
abstract public class a {
public static <error descr="2">protected int f1 = 0;
}
class ff {
}