mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
15 lines
216 B
Java
Vendored
15 lines
216 B
Java
Vendored
package dependencies;
|
|
|
|
import sealedClass.Foo;
|
|
|
|
public class A {
|
|
public static class B<T> {
|
|
}
|
|
|
|
public static B<Foo.Bar> myList = null;
|
|
|
|
public static <T> T bar(B<T> tb) {
|
|
return null;
|
|
}
|
|
}
|