11 lines
119 B
Kotlin
Vendored
11 lines
119 B
Kotlin
Vendored
// C
|
|
|
|
interface Base {
|
|
fun foo(): Any
|
|
}
|
|
|
|
class C : Base {
|
|
override fun foo(): Unit {}
|
|
}
|
|
|
|
// LAZINESS:NoLaziness |