mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
reuse utility method; ensure unknown functional type reduced to Object before create new psi
EA-75452 - IOE: PsiJavaParserFacadeImpl.createTypeElementFromText
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Create local variable 'a'" "true"
|
||||
class C {
|
||||
void foo() {
|
||||
(s) -> {
|
||||
Object a = s;
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Create local variable 'a'" "true"
|
||||
class C {
|
||||
void foo() {
|
||||
(s) -> {
|
||||
<caret>a = s;
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user