mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-17 18:50:49 +07:00
abf32b50d5
(EA-77049 - assert: PsiMethodCallExpressionImpl$TypeEvaluator.fun)
19 lines
293 B
Java
19 lines
293 B
Java
class Test {
|
|
|
|
public void myMethod()
|
|
{
|
|
foo ( <error descr="Variable expected">bar("")</error> = "");
|
|
}
|
|
|
|
private <T> T foo(final T bar) {
|
|
return null;
|
|
}
|
|
private <T> T foo(final String bar) {
|
|
return null;
|
|
}
|
|
|
|
private <S> S bar(final String s) {
|
|
return null;
|
|
}
|
|
}
|