[java-decompiler] skips illegal local variable names

This commit is contained in:
Roman Shevchenko
2016-04-20 15:02:39 +02:00
parent b96586cc2f
commit eaa61a1f81
6 changed files with 80 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
package pkg
class TestIllegalVarName {
fun m(`this`: String, `enum`: Int): String {
return `this` + '/' + `enum`
}
}