[java] since Java 9, underscore identifiers are completely prohibited (IDEA-132278)

This commit is contained in:
Roman Shevchenko
2015-07-22 18:23:28 +02:00
parent 0afda74389
commit cff7efd5d1
7 changed files with 35 additions and 19 deletions
@@ -0,0 +1,3 @@
class Undescore {
void <error descr="As of Java 9, '_' is a keyword, and may not be used as an identifier">_</error>() { }
}