1bbcae5ed2
We cannot call lazy resolve to STATUS phase from scopes as scopes may be accessed on a STATUS phase or earlier ^KT-54890 ^KTIJ-23587 fixed
11 lines
167 B
Kotlin
Vendored
11 lines
167 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
open class B<T> {
|
|
open fun foo(t: T) {}
|
|
}
|
|
|
|
class C : B<String>() {
|
|
override fun foo(t: String) {}
|
|
|
|
fun foo(o: Any) {}
|
|
} |