mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
lambda: proceed c-like arrays declarations in parameters for lambda with excplicit type declarations (IDEA-152690)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
|
||||
interface X {
|
||||
void foo(int[] x);
|
||||
}
|
||||
|
||||
class C {
|
||||
static void main(String[] args){
|
||||
X a = (int x[]) -> { };
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user