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,6 @@
public abstract interface KtInterface /* KtInterface*/ {
public abstract void defaultFun();// defaultFun()
public abstract void withoutBody();// withoutBody()
}