954204da82
Report warning on extensions shadowed by members.
7 lines
106 B
Kotlin
Vendored
7 lines
106 B
Kotlin
Vendored
interface IFoo {
|
|
fun foo()
|
|
}
|
|
|
|
fun outer() {
|
|
fun IFoo.<!EXTENSION_SHADOWED_BY_MEMBER!>foo<!>() {}
|
|
} |