mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
Fixes IDEA-356914 Exception in Inline variable on red code GitOrigin-RevId: ca785f72ba4b99fed0a0f3410a21df7dd13b7c5a
8 lines
124 B
Java
8 lines
124 B
Java
public class LambdaInitialization {
|
|
Runnable foo() {
|
|
Runnable <caret>s = () -> {
|
|
s();
|
|
};
|
|
return s;
|
|
}
|
|
} |