Do not generate DefaultImpls for light classes if not needed

#KT-41130 In Progress
This commit is contained in:
Mikhail Zarechenskiy
2021-03-09 14:45:31 +03:00
committed by TeamCityServer
parent ac6232b4ba
commit 111e54c8c1
17 changed files with 98 additions and 23 deletions
@@ -0,0 +1,10 @@
// CHECK_BY_JAVA_FILE
// COMPILER_ARGUMENTS: -Xjvm-default=all
interface KtInterface {
fun defaultFun() {
println("default")
}
fun withoutBody()
}