mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
12 lines
137 B
Kotlin
Vendored
12 lines
137 B
Kotlin
Vendored
// C
|
|
|
|
interface Base {
|
|
fun foo(): Any
|
|
}
|
|
|
|
class C : Base {
|
|
override fun foo(): Unit {}
|
|
}
|
|
|
|
// LAZINESS:NoLaziness
|
|
// FIR_COMPARISON |