Generate declarations for FAKE_OVERRIDE members

This commit is contained in:
Dmitry Petrov
2017-03-17 16:31:48 +03:00
parent 4ee1fb9309
commit a416cddcb2
84 changed files with 836 additions and 9 deletions
@@ -0,0 +1,15 @@
interface IFooStr {
fun foo(x: String)
}
interface IBar {
val bar: Int
}
abstract class CFoo<T> {
fun foo(x: T) {}
}
class Test1 : CFoo<String>(), IFooStr, IBar {
override val bar: Int = 42
}