mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
Fixes IDEA-356914 Exception in Inline variable on red code GitOrigin-RevId: ca785f72ba4b99fed0a0f3410a21df7dd13b7c5a
7 lines
103 B
Plaintext
7 lines
103 B
Plaintext
public class LambdaInitialization {
|
|
Runnable foo() {
|
|
return () -> {
|
|
s();
|
|
};
|
|
}
|
|
} |