[LC] rename lightClasses/lightClasses to lightClasses/lightClassByFqName
This commit is contained in:
Vendored
+26
@@ -0,0 +1,26 @@
|
||||
// p.Inheritor
|
||||
package p
|
||||
|
||||
class Inheritor: I, I2 {
|
||||
|
||||
fun f() {
|
||||
|
||||
}
|
||||
|
||||
override fun g() {
|
||||
}
|
||||
}
|
||||
|
||||
interface I : I1 {
|
||||
fun g()
|
||||
}
|
||||
|
||||
interface I1 {
|
||||
fun foo() = "foo"
|
||||
}
|
||||
|
||||
interface I2 {
|
||||
fun bar() = "bar"
|
||||
}
|
||||
|
||||
// FIR_COMPARISON
|
||||
Reference in New Issue
Block a user