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