mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
8 lines
110 B
Java
8 lines
110 B
Java
package test;
|
|
|
|
final class Outer<P> {
|
|
final class Inner {
|
|
final <Q extends P> void f() {}
|
|
}
|
|
}
|