mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
234 B
Java
12 lines
234 B
Java
import java.util.*;
|
|
class B{
|
|
|
|
public static void main(String[] args) {
|
|
B b = null;
|
|
b.bar(b.<Str<caret>ing>foo("", ""));
|
|
}
|
|
|
|
<T> String foo(T t, String s){return null;}
|
|
String bar(String s) {return null;}
|
|
|
|
} |