Do not generate DefaultImpls if empty

This commit is contained in:
Yan Zhulanow
2015-10-26 16:03:58 +03:00
parent 2a28baa154
commit 3475b4796f
14 changed files with 271 additions and 64 deletions
@@ -0,0 +1,17 @@
interface A
interface B {
fun foo()
}
interface C {
val bar: Int
}
interface D {
fun baz() = 5
}
interface E {
class InsideE
}