mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
12 lines
90 B
Java
12 lines
90 B
Java
interface SAM {
|
|
void bar(int i);
|
|
}
|
|
|
|
class Test {
|
|
|
|
{
|
|
SAM sam = (i) -> {};
|
|
}
|
|
|
|
}
|