mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
211 B
Java
12 lines
211 B
Java
class Inference {
|
|
public <T> T getX() {
|
|
return null;
|
|
}
|
|
|
|
void foo (String s) {}
|
|
|
|
{
|
|
String v2 = new Inference().getX();
|
|
foo(<caret>v2);
|
|
}
|
|
} |