mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
Delegated and synthesized members don't usually have a declaration as well as fake overrides
8 lines
166 B
Java
8 lines
166 B
Java
import java.util.Set;
|
|
|
|
public class delegationAndInheritanceFromJava {
|
|
public interface A extends Set<String> {}
|
|
|
|
public interface B extends Set<String> {}
|
|
}
|