blob: b5dbac3ac5fa85a95a70f6988782c55ec8e6fc54 [file]
// RUN_PIPELINE_TILL: BACKEND
// In K2, the name collision detector is weakened, because the backend started to resolve such collisions.
// K1 was not changed since it's in maintenance mode.
package foo
open class Super {
val foo = 23
}
class Sub : Super() {
fun foo() = 42
}