mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
testdata for IDEA-151777
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
class Foo {
|
||||
public void foo() {
|
||||
String s = foo(new I<>() {
|
||||
public String m() {
|
||||
return null;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
static <T> T foo(I<T> action) {
|
||||
return null;
|
||||
}
|
||||
|
||||
interface I<T> {
|
||||
T m();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user