Generate declarations for FAKE_OVERRIDE members
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user