mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 15:51:52 +00:00
24 lines
452 B
Plaintext
Vendored
24 lines
452 B
Plaintext
Vendored
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
|
|
}
|
|
}
|