mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
16 lines
304 B
Java
16 lines
304 B
Java
import java.util.*;
|
|
class Main {
|
|
public static <T> T foo() {return null;}
|
|
|
|
public static <B> List<B> bar(B b) {return null;}
|
|
static {
|
|
List<String> s = bar(foo());
|
|
}
|
|
|
|
|
|
public static <B> B bar1(B b) {return null;}
|
|
static {
|
|
String s1 = bar1(foo());
|
|
}
|
|
}
|