blob: 97a3808d930688a5dea549164f6f574971c1e3a7 [file] [log] [blame]
package test
public interface Nested {
public interface Deeper1 {
public interface Runnable {
public abstract fun run(): kotlin.Unit
public abstract fun run2(): kotlin.Unit
}
}
public interface Deeper2 {
public interface Runnable {
public abstract fun run(): kotlin.Unit
}
}
public interface Runnable {
public abstract fun run(): kotlin.Unit
}
}