69c250a1b7
Allows to avoid putting NoLaziness flag on every test that mentions 'override' modifier
11 lines
123 B
Kotlin
Vendored
11 lines
123 B
Kotlin
Vendored
// C
|
|
|
|
interface Tr {
|
|
fun foo(): Any
|
|
val v: Any
|
|
}
|
|
|
|
class C: Tr {
|
|
override fun foo() = 1
|
|
override val v = 1
|
|
} |