mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
11 lines
80 B
Java
11 lines
80 B
Java
|
|
class A implements B.C {
|
|
}
|
|
|
|
class B {
|
|
B(C c) {}
|
|
|
|
interface C {
|
|
}
|
|
}
|