954204da82
Report warning on extensions shadowed by members.
9 lines
199 B
Kotlin
Vendored
9 lines
199 B
Kotlin
Vendored
interface IFooBar {
|
|
fun foo()
|
|
val bar: Int
|
|
}
|
|
|
|
class Host {
|
|
fun IFooBar.<!EXTENSION_SHADOWED_BY_MEMBER!>foo<!>() {}
|
|
val IFooBar.<!EXTENSION_SHADOWED_BY_MEMBER!>bar<!>: Int get() = 42
|
|
} |