mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-22 15:51:33 +00:00
12 lines
118 B
Java
Vendored
12 lines
118 B
Java
Vendored
package test;
|
|
|
|
public class SubclassFromNested implements B.C {
|
|
}
|
|
|
|
class B {
|
|
B(C c) {}
|
|
|
|
interface C {
|
|
}
|
|
}
|