IDEA-162579 "Unrecognized invocation of <init>" when decompiling kotlin bytecode

This commit is contained in:
Egor.Ushakov
2016-10-14 14:40:00 +03:00
parent 77d6c2906f
commit ee83b25d1d
5 changed files with 90 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
private fun foo(list: Collection<String>): List<Mapping> {
return list.map {
Mapping(it as String)
}.toList()
}
class Mapping(c: String) {
}