mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
13 lines
149 B
Java
13 lines
149 B
Java
package test;
|
|
|
|
interface Trait<P> {
|
|
}
|
|
|
|
class Outer<P, Q> {
|
|
class Inner {
|
|
}
|
|
|
|
class Inner2 extends Inner implements Trait<P> {
|
|
}
|
|
}
|