JVM IR: fix typo in condition in KCallableNamePropertyLowering

This however makes testLocalFunctionName fail because currently
isSubclassOf (incorrectly) returns false and therefore an anonymous
class is generated and the name is taken from there. The name there is
"box$OK" which is incorrect. The isSubclassOf issue is KT-28198 and will
be fixed separately; the incorrect name issue will be investigated later
This commit is contained in:
Alexander Udalov
2019-03-12 13:14:38 +01:00
parent dd59deb977
commit a269e9bc00
2 changed files with 3 additions and 2 deletions
@@ -1,4 +1,5 @@
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JVM_IR, JS_IR
fun box(): String {
fun OK() {}