mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
16 lines
195 B
Java
16 lines
195 B
Java
class Test {
|
|
interface I {
|
|
String m(int a);
|
|
}
|
|
|
|
/**
|
|
* @param a not my wrong javadoc
|
|
*/
|
|
public String getY() {
|
|
I i = (a) -> {
|
|
return null;
|
|
};
|
|
return null;
|
|
}
|
|
|
|
} |