mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
cs: pass this as default value when anyVar is selected and this type would be applicable (IDEA-59510)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import java.util.List;
|
||||
|
||||
class C {
|
||||
void <caret>method() {
|
||||
}
|
||||
}
|
||||
|
||||
class Usage implements List {
|
||||
{
|
||||
final C c = new C();
|
||||
c.method();
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
c.method();
|
||||
}
|
||||
}.run();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user