mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
additional checks for local classes & initializer components IJ-CR-2759 GitOrigin-RevId: 84402b253396ef60c33d3468bcc6fdc65c4e3176
15 lines
190 B
Plaintext
15 lines
190 B
Plaintext
interface Consumer<T> {
|
|
void accept(T t);
|
|
}
|
|
|
|
class Test {
|
|
class X {
|
|
|
|
X() {
|
|
}
|
|
|
|
void test() {
|
|
((Consumer<String>) s -> System.out.println(s)).accept("1");
|
|
}
|
|
}
|
|
} |